diff --git a/Assets/Scripts/EditorGame/Animations/Transform/Displacement.cs b/Assets/Scripts/EditorGame/Animations/Transform/Displacement.cs index 82fe51d5..5f09c17e 100644 --- a/Assets/Scripts/EditorGame/Animations/Transform/Displacement.cs +++ b/Assets/Scripts/EditorGame/Animations/Transform/Displacement.cs @@ -45,9 +45,16 @@ namespace Ichni.RhythmGame positionY.UpdateFlexibleFloat(songTime); positionZ.UpdateFlexibleFloat(songTime); - if ((positionX.returnType is FlexibleReturnType.MiddleExecuting || positionX.isSwitchingReturnType) || - (positionY.returnType is FlexibleReturnType.MiddleExecuting || positionY.isSwitchingReturnType) || - (positionZ.returnType is FlexibleReturnType.MiddleExecuting || positionZ.isSwitchingReturnType)) + if (positionX.returnType is FlexibleReturnType.MiddleExecuting || + positionY.returnType is FlexibleReturnType.MiddleExecuting || + positionZ.returnType is FlexibleReturnType.MiddleExecuting) + { + animationReturnType = FlexibleReturnType.MiddleExecuting; + Vector3 currentPosition = new Vector3(positionX.value, positionY.value, positionZ.value); + targetTransformSubmodule.positionOffset += currentPosition; + targetTransformSubmodule.positionDirtyMark = true; + } + else if (positionX.isSwitchingReturnType || positionY.isSwitchingReturnType || positionZ.isSwitchingReturnType) { animationReturnType = FlexibleReturnType.MiddleExecuting; Vector3 currentPosition = new Vector3(positionX.value, positionY.value, positionZ.value); diff --git a/Assets/Scripts/EditorGame/Animations/Transform/Scale.cs b/Assets/Scripts/EditorGame/Animations/Transform/Scale.cs index 5206a62f..4d45ca4b 100644 --- a/Assets/Scripts/EditorGame/Animations/Transform/Scale.cs +++ b/Assets/Scripts/EditorGame/Animations/Transform/Scale.cs @@ -45,9 +45,16 @@ namespace Ichni.RhythmGame scaleY.UpdateFlexibleFloat(songTime); scaleZ.UpdateFlexibleFloat(songTime); - if ((scaleX.returnType is FlexibleReturnType.MiddleExecuting || scaleX.isSwitchingReturnType) || - (scaleY.returnType is FlexibleReturnType.MiddleExecuting || scaleY.isSwitchingReturnType) || - (scaleZ.returnType is FlexibleReturnType.MiddleExecuting || scaleZ.isSwitchingReturnType)) + if (scaleX.returnType is FlexibleReturnType.MiddleExecuting || + scaleY.returnType is FlexibleReturnType.MiddleExecuting || + scaleZ.returnType is FlexibleReturnType.MiddleExecuting) + { + animationReturnType = FlexibleReturnType.MiddleExecuting; + Vector3 currentScale = new Vector3(scaleX.value, scaleY.value, scaleZ.value); + targetTransformSubmodule.scaleOffset += currentScale; + targetTransformSubmodule.scaleDirtyMark = true; + } + else if (scaleX.isSwitchingReturnType || scaleY.isSwitchingReturnType || scaleZ.isSwitchingReturnType) { animationReturnType = FlexibleReturnType.MiddleExecuting; Vector3 currentScale = new Vector3(scaleX.value, scaleY.value, scaleZ.value); diff --git a/Assets/Scripts/EditorGame/Animations/Transform/Swirl.cs b/Assets/Scripts/EditorGame/Animations/Transform/Swirl.cs index 0242af24..75c1c3aa 100644 --- a/Assets/Scripts/EditorGame/Animations/Transform/Swirl.cs +++ b/Assets/Scripts/EditorGame/Animations/Transform/Swirl.cs @@ -44,9 +44,16 @@ namespace Ichni.RhythmGame eulerAngleY.UpdateFlexibleFloat(songTime); eulerAngleZ.UpdateFlexibleFloat(songTime); - if (eulerAngleX.returnType is FlexibleReturnType.MiddleExecuting || eulerAngleX.isSwitchingReturnType || - (eulerAngleY.returnType is FlexibleReturnType.MiddleExecuting || eulerAngleY.isSwitchingReturnType) || - (eulerAngleZ.returnType is FlexibleReturnType.MiddleExecuting || eulerAngleZ.isSwitchingReturnType)) + if (eulerAngleX.returnType is FlexibleReturnType.MiddleExecuting || + eulerAngleY.returnType is FlexibleReturnType.MiddleExecuting || + eulerAngleZ.returnType is FlexibleReturnType.MiddleExecuting) + { + animationReturnType = FlexibleReturnType.MiddleExecuting; + Vector3 currentEulerAngles = new Vector3(eulerAngleX.value, eulerAngleY.value, eulerAngleZ.value); + targetTransformSubmodule.eulerAnglesOffset += currentEulerAngles; + targetTransformSubmodule.eulerAnglesDirtyMark = true; + } + else if (eulerAngleX.isSwitchingReturnType || eulerAngleY.isSwitchingReturnType || eulerAngleZ.isSwitchingReturnType) { animationReturnType = FlexibleReturnType.MiddleExecuting; Vector3 currentEulerAngles = new Vector3(eulerAngleX.value, eulerAngleY.value, eulerAngleZ.value); diff --git a/Assets/Scripts/EditorGame/Base/FlexibleTypes/FlexibleFloat.cs b/Assets/Scripts/EditorGame/Base/FlexibleTypes/FlexibleFloat.cs index 0aa614c5..0c9d70cb 100644 --- a/Assets/Scripts/EditorGame/Base/FlexibleTypes/FlexibleFloat.cs +++ b/Assets/Scripts/EditorGame/Base/FlexibleTypes/FlexibleFloat.cs @@ -2,6 +2,7 @@ using System; using System.Collections; using System.Collections.Generic; using Ichni.RhythmGame.Beatmap; +using UnityEngine; namespace Ichni.RhythmGame @@ -84,6 +85,15 @@ namespace Ichni.RhythmGame AnimatedFloat nowAnimatedFloat = GetAnimatedFloat(nowTime); //获取当前时间点对应的AnimatedFloat if (nowAnimatedFloat != null) //如果能获取到,表明当前时间点存在动画 { + if (nowTime + Time.deltaTime >= nowAnimatedFloat.endTime) + { + value = nowAnimatedFloat.endValue; + returnType = FlexibleReturnType.After; + if (lastReturnType != returnType) isSwitchingReturnType = true; + lastReturnType = returnType; + return; + } + //获取songTime时间点时,基于动画曲线的AnimatedFloat比例点->(0,1)。 float nowPercent = AnimationCurveEvaluator.Evaluate(nowAnimatedFloat.animationCurveType, (nowTime - nowAnimatedFloat.startTime) / nowAnimatedFloat.totalTime); diff --git a/Assets/StreamingAssets/AutoSave/LWS2.meta b/Assets/StreamingAssets/AutoSave/LWS2.meta new file mode 100644 index 00000000..b219af5e --- /dev/null +++ b/Assets/StreamingAssets/AutoSave/LWS2.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b06ede4b8c5751e438191b94eb2a6d6a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets/AutoSave/LWS2/AutoSave_0.json b/Assets/StreamingAssets/AutoSave/LWS2/AutoSave_0.json new file mode 100644 index 00000000..99525d8a --- /dev/null +++ b/Assets/StreamingAssets/AutoSave/LWS2/AutoSave_0.json @@ -0,0 +1,100358 @@ +{ + "Beatmap" : { + "__type" : "Ichni.RhythmGame.Beatmap.BeatmapContainer_BM,Assembly-CSharp", + "value" : { + "elementList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp", + "elementName" : "camera Folder", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4ee7f15e-c6f6-40e5-b9e8-8e4887afe797" + }, + "attachedElementGuid" : { + "value" : "00000000-0000-0000-0000-000000000000" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4ee7f15e-c6f6-40e5-b9e8-8e4887afe797" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4ee7f15e-c6f6-40e5-b9e8-8e4887afe797" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp", + "elementName" : "p1\/\/note判定,装饰\/\/", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8a93d451-0bc7-413a-aba5-5a041a6b8912" + }, + "attachedElementGuid" : { + "value" : "00000000-0000-0000-0000-000000000000" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8a93d451-0bc7-413a-aba5-5a041a6b8912" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8a93d451-0bc7-413a-aba5-5a041a6b8912" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.CrossTrackPoint_BM,Assembly-CSharp", + "trackSwitch" : { + "value" : 5, + "animations" : [ + { + "value" : 0, + "time" : 11.294 + },{ + "value" : 1, + "time" : 22.588 + },{ + "value" : 2, + "time" : 35.294 + },{ + "value" : 3, + "time" : 46.588 + },{ + "value" : 4, + "time" : 56.117 + },{ + "value" : 5, + "time" : 57.882 + },{ + "value" : 6, + "time" : 67.764 + },{ + "value" : 7, + "time" : 91.647 + },{ + "value" : 8, + "time" : 114.352 + } + ] + }, + "trackPercent" : { + "value" : 0.151723579, + "currentAnimationIndex" : 5, + "animations" : [ + { + "startValue" : 0, + "endValue" : 1, + "startTime" : 11.294, + "endTime" : 22.588, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 1, + "startTime" : 22.588, + "endTime" : 35.294, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 1, + "startTime" : 35.294, + "endTime" : 46.588, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 1, + "startTime" : 46.588, + "endTime" : 56.117, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 1, + "startTime" : 56.117, + "endTime" : 57.882, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 1, + "startTime" : 57.882, + "endTime" : 67.764, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 1, + "startTime" : 67.764, + "endTime" : 91.764, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 1, + "startTime" : 91.647, + "endTime" : 114.352, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 1, + "startTime" : 114.352, + "endTime" : 125.647, + "animationCurveType" : 0 + } + ], + "isSwitchingReturnType" : false, + "lastReturnType" : 1, + "returnType" : 1 + }, + "MotionAngles" : false, + "elementName" : "New Cross Track Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "26fc838e-1ad6-4cd3-ad1a-1e13218fbbd4" + }, + "attachedElementGuid" : { + "value" : "4ee7f15e-c6f6-40e5-b9e8-8e4887afe797" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "26fc838e-1ad6-4cd3-ad1a-1e13218fbbd4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.GameCamera_BM,Assembly-CSharp", + "cameraViewType" : 0, + "perspectiveAngle" : 60, + "orthographicSize" : 10, + "elementName" : "New Game Camera", + "tags" : [ + + ], + "elementGuid" : { + "value" : "55a94bf1-2759-4aa3-81a7-b374885fe1dc" + }, + "attachedElementGuid" : { + "value" : "26fc838e-1ad6-4cd3-ad1a-1e13218fbbd4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "55a94bf1-2759-4aa3-81a7-b374885fe1dc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "11.294-22.588", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4fc7385c-018d-44ce-a48b-377d261fd648" + }, + "attachedElementGuid" : { + "value" : "4ee7f15e-c6f6-40e5-b9e8-8e4887afe797" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4fc7385c-018d-44ce-a48b-377d261fd648" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4fc7385c-018d-44ce-a48b-377d261fd648" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 0, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "4fc7385c-018d-44ce-a48b-377d261fd648" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 11.294, + "trackEndTime" : 22.588, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "4fc7385c-018d-44ce-a48b-377d261fd648" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "05d8bef5-e666-4058-bcc7-d4259a7f5b68" + }, + "attachedElementGuid" : { + "value" : "4fc7385c-018d-44ce-a48b-377d261fd648" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 7, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "05d8bef5-e666-4058-bcc7-d4259a7f5b68" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "05d8bef5-e666-4058-bcc7-d4259a7f5b68" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "05d8bef5-e666-4058-bcc7-d4259a7f5b68" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cd0cb3bf-ad46-4cb8-a45e-0d650202b4ff" + }, + "attachedElementGuid" : { + "value" : "4fc7385c-018d-44ce-a48b-377d261fd648" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 7, + "z" : 128 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "cd0cb3bf-ad46-4cb8-a45e-0d650202b4ff" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "cd0cb3bf-ad46-4cb8-a45e-0d650202b4ff" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "cd0cb3bf-ad46-4cb8-a45e-0d650202b4ff" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Swirl_BM,Assembly-CSharp", + "eulerAngleX" : { + "animatedFloatList" : [ + { + "startValue" : 20, + "endValue" : 20, + "startTime" : 0, + "endTime" : 21.97, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 0, + "startTime" : 21.97, + "endTime" : 33.882, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 20, + "startTime" : 33.882, + "endTime" : 34.941, + "animationCurveType" : 0 + },{ + "startValue" : 20, + "endValue" : 90, + "startTime" : 56.117, + "endTime" : 57.882, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 0, + "startTime" : 68, + "endTime" : 68.5, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 10, + "startTime" : 69.176, + "endTime" : 91.764, + "animationCurveType" : 0 + } + ] + }, + "eulerAngleY" : { + "animatedFloatList" : [ + + ] + }, + "eulerAngleZ" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 0, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "elementName" : "New Swirl", + "tags" : [ + + ], + "elementGuid" : { + "value" : "49216f6a-45c7-4b0c-aff0-93dc9f84c72d" + }, + "attachedElementGuid" : { + "value" : "55a94bf1-2759-4aa3-81a7-b374885fe1dc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "49216f6a-45c7-4b0c-aff0-93dc9f84c72d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp", + "elementName" : "note", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b1a55782-54c7-42ae-908e-91c3be9b03c2" + }, + "attachedElementGuid" : { + "value" : "8a93d451-0bc7-413a-aba5-5a041a6b8912" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b1a55782-54c7-42ae-908e-91c3be9b03c2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b1a55782-54c7-42ae-908e-91c3be9b03c2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "New Track", + "tags" : [ + + ], + "elementGuid" : { + "value" : "56a7c80a-d417-4f29-8a61-bd43f017adc3" + }, + "attachedElementGuid" : { + "value" : "b1a55782-54c7-42ae-908e-91c3be9b03c2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "56a7c80a-d417-4f29-8a61-bd43f017adc3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "56a7c80a-d417-4f29-8a61-bd43f017adc3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 3, + "trackSamplingType" : 1, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "56a7c80a-d417-4f29-8a61-bd43f017adc3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 11.294, + "trackEndTime" : 22.588, + "visibleTrackTimeLength" : 10, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "56a7c80a-d417-4f29-8a61-bd43f017adc3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6e355dd2-6d23-4361-a600-6b05df23fcd6" + }, + "attachedElementGuid" : { + "value" : "56a7c80a-d417-4f29-8a61-bd43f017adc3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6e355dd2-6d23-4361-a600-6b05df23fcd6" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 11.294 + },{ + "value" : false, + "time" : 22.588 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "89646b85-1142-467c-9ef0-315b857387d0" + }, + "attachedElementGuid" : { + "value" : "6e355dd2-6d23-4361-a600-6b05df23fcd6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "89646b85-1142-467c-9ef0-315b857387d0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "89646b85-1142-467c-9ef0-315b857387d0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "89646b85-1142-467c-9ef0-315b857387d0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 11.294, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "67b4fd9b-4ac3-4d8c-8975-0bc98f46648e" + }, + "attachedElementGuid" : { + "value" : "56a7c80a-d417-4f29-8a61-bd43f017adc3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "67b4fd9b-4ac3-4d8c-8975-0bc98f46648e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + + ], + "attachedElementGuid" : { + "value" : "67b4fd9b-4ac3-4d8c-8975-0bc98f46648e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "67b4fd9b-4ac3-4d8c-8975-0bc98f46648e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 12.705, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a50595bf-72a8-4085-81b8-822aa151d040" + }, + "attachedElementGuid" : { + "value" : "56a7c80a-d417-4f29-8a61-bd43f017adc3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a50595bf-72a8-4085-81b8-822aa151d040" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + + ], + "attachedElementGuid" : { + "value" : "a50595bf-72a8-4085-81b8-822aa151d040" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "a50595bf-72a8-4085-81b8-822aa151d040" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 14.117, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9a6d497a-77b3-490b-b97a-c2e03ee729f9" + }, + "attachedElementGuid" : { + "value" : "56a7c80a-d417-4f29-8a61-bd43f017adc3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9a6d497a-77b3-490b-b97a-c2e03ee729f9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + + ], + "attachedElementGuid" : { + "value" : "9a6d497a-77b3-490b-b97a-c2e03ee729f9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "9a6d497a-77b3-490b-b97a-c2e03ee729f9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 15.529, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8e261ee0-9993-48b8-adbe-d58a88112fb7" + }, + "attachedElementGuid" : { + "value" : "56a7c80a-d417-4f29-8a61-bd43f017adc3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8e261ee0-9993-48b8-adbe-d58a88112fb7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + + ], + "attachedElementGuid" : { + "value" : "8e261ee0-9993-48b8-adbe-d58a88112fb7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "8e261ee0-9993-48b8-adbe-d58a88112fb7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 16.941, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b40ff0d6-896a-479c-ab1b-1d2d5f9746b3" + }, + "attachedElementGuid" : { + "value" : "56a7c80a-d417-4f29-8a61-bd43f017adc3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b40ff0d6-896a-479c-ab1b-1d2d5f9746b3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + + ], + "attachedElementGuid" : { + "value" : "b40ff0d6-896a-479c-ab1b-1d2d5f9746b3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "b40ff0d6-896a-479c-ab1b-1d2d5f9746b3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 18.352, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1f9b6d66-84f5-44c4-bc9f-accb4d63aee4" + }, + "attachedElementGuid" : { + "value" : "56a7c80a-d417-4f29-8a61-bd43f017adc3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1f9b6d66-84f5-44c4-bc9f-accb4d63aee4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + + ], + "attachedElementGuid" : { + "value" : "1f9b6d66-84f5-44c4-bc9f-accb4d63aee4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "1f9b6d66-84f5-44c4-bc9f-accb4d63aee4" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4e50d22e-52af-4d5a-a473-39f16e3e6506" + }, + "attachedElementGuid" : { + "value" : "67b4fd9b-4ac3-4d8c-8975-0bc98f46648e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4e50d22e-52af-4d5a-a473-39f16e3e6506" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4e50d22e-52af-4d5a-a473-39f16e3e6506" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4e50d22e-52af-4d5a-a473-39f16e3e6506" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 11.294, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "4e50d22e-52af-4d5a-a473-39f16e3e6506" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e0ee9586-1010-4249-944a-ae603009be59" + }, + "attachedElementGuid" : { + "value" : "a50595bf-72a8-4085-81b8-822aa151d040" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e0ee9586-1010-4249-944a-ae603009be59" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e0ee9586-1010-4249-944a-ae603009be59" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e0ee9586-1010-4249-944a-ae603009be59" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 11.294, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "e0ee9586-1010-4249-944a-ae603009be59" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d03cbf70-33bb-407c-9d90-3ab36fee74aa" + }, + "attachedElementGuid" : { + "value" : "9a6d497a-77b3-490b-b97a-c2e03ee729f9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d03cbf70-33bb-407c-9d90-3ab36fee74aa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d03cbf70-33bb-407c-9d90-3ab36fee74aa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d03cbf70-33bb-407c-9d90-3ab36fee74aa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 11.294, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d03cbf70-33bb-407c-9d90-3ab36fee74aa" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "75abb3f5-48f8-48b3-83b6-2759d56c2665" + }, + "attachedElementGuid" : { + "value" : "8e261ee0-9993-48b8-adbe-d58a88112fb7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "75abb3f5-48f8-48b3-83b6-2759d56c2665" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "75abb3f5-48f8-48b3-83b6-2759d56c2665" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "75abb3f5-48f8-48b3-83b6-2759d56c2665" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 11.294, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "75abb3f5-48f8-48b3-83b6-2759d56c2665" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f5f31734-781c-49cb-9e94-38a4750ae621" + }, + "attachedElementGuid" : { + "value" : "b40ff0d6-896a-479c-ab1b-1d2d5f9746b3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f5f31734-781c-49cb-9e94-38a4750ae621" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f5f31734-781c-49cb-9e94-38a4750ae621" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f5f31734-781c-49cb-9e94-38a4750ae621" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 11.294, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "f5f31734-781c-49cb-9e94-38a4750ae621" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "404421a8-d1e1-4033-a3b1-907ed9c78c52" + }, + "attachedElementGuid" : { + "value" : "1f9b6d66-84f5-44c4-bc9f-accb4d63aee4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "404421a8-d1e1-4033-a3b1-907ed9c78c52" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "404421a8-d1e1-4033-a3b1-907ed9c78c52" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "404421a8-d1e1-4033-a3b1-907ed9c78c52" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 11.294, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "404421a8-d1e1-4033-a3b1-907ed9c78c52" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d02514d6-1eb2-4c0d-9977-8cf52a04e879" + }, + "attachedElementGuid" : { + "value" : "56a7c80a-d417-4f29-8a61-bd43f017adc3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 10 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d02514d6-1eb2-4c0d-9977-8cf52a04e879" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d02514d6-1eb2-4c0d-9977-8cf52a04e879" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d02514d6-1eb2-4c0d-9977-8cf52a04e879" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fabe041d-0bd0-4c94-9d67-5d483514d66d" + }, + "attachedElementGuid" : { + "value" : "56a7c80a-d417-4f29-8a61-bd43f017adc3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -2, + "y" : 0, + "z" : 18 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "fabe041d-0bd0-4c94-9d67-5d483514d66d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fabe041d-0bd0-4c94-9d67-5d483514d66d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "fabe041d-0bd0-4c94-9d67-5d483514d66d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8d0463d2-b87b-4ffb-af46-aa4bb8bce31f" + }, + "attachedElementGuid" : { + "value" : "56a7c80a-d417-4f29-8a61-bd43f017adc3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -4, + "y" : 0, + "z" : 26 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8d0463d2-b87b-4ffb-af46-aa4bb8bce31f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8d0463d2-b87b-4ffb-af46-aa4bb8bce31f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8d0463d2-b87b-4ffb-af46-aa4bb8bce31f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d4b7d174-c40c-4632-84d3-a97a6f0b97e9" + }, + "attachedElementGuid" : { + "value" : "56a7c80a-d417-4f29-8a61-bd43f017adc3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -1, + "y" : 0, + "z" : 34 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d4b7d174-c40c-4632-84d3-a97a6f0b97e9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d4b7d174-c40c-4632-84d3-a97a6f0b97e9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d4b7d174-c40c-4632-84d3-a97a6f0b97e9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "86dae751-7fb6-42df-b4a6-3cedc37ffcd1" + }, + "attachedElementGuid" : { + "value" : "56a7c80a-d417-4f29-8a61-bd43f017adc3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2, + "y" : 0, + "z" : 42 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "86dae751-7fb6-42df-b4a6-3cedc37ffcd1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "86dae751-7fb6-42df-b4a6-3cedc37ffcd1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "86dae751-7fb6-42df-b4a6-3cedc37ffcd1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "147c2870-a54e-4911-a1d0-18f0ddd44851" + }, + "attachedElementGuid" : { + "value" : "56a7c80a-d417-4f29-8a61-bd43f017adc3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 50 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "147c2870-a54e-4911-a1d0-18f0ddd44851" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "147c2870-a54e-4911-a1d0-18f0ddd44851" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "147c2870-a54e-4911-a1d0-18f0ddd44851" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "827f8a8c-d33c-41d5-93ac-2a8c7bac9085" + }, + "attachedElementGuid" : { + "value" : "56a7c80a-d417-4f29-8a61-bd43f017adc3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -2, + "y" : 0, + "z" : 58 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "827f8a8c-d33c-41d5-93ac-2a8c7bac9085" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "827f8a8c-d33c-41d5-93ac-2a8c7bac9085" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "827f8a8c-d33c-41d5-93ac-2a8c7bac9085" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "72e3236c-fd1d-4b18-b468-1899dac84236" + }, + "attachedElementGuid" : { + "value" : "56a7c80a-d417-4f29-8a61-bd43f017adc3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 1, + "y" : 0, + "z" : 66 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "72e3236c-fd1d-4b18-b468-1899dac84236" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "72e3236c-fd1d-4b18-b468-1899dac84236" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "72e3236c-fd1d-4b18-b468-1899dac84236" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9df60a0e-5e62-4c50-8f25-4da24b42ab85" + }, + "attachedElementGuid" : { + "value" : "56a7c80a-d417-4f29-8a61-bd43f017adc3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 4, + "y" : 0, + "z" : 74 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9df60a0e-5e62-4c50-8f25-4da24b42ab85" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9df60a0e-5e62-4c50-8f25-4da24b42ab85" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "9df60a0e-5e62-4c50-8f25-4da24b42ab85" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "71645a71-a0d9-4ae0-ad2c-b20e61928a64" + }, + "attachedElementGuid" : { + "value" : "56a7c80a-d417-4f29-8a61-bd43f017adc3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 82 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "71645a71-a0d9-4ae0-ad2c-b20e61928a64" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "71645a71-a0d9-4ae0-ad2c-b20e61928a64" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "71645a71-a0d9-4ae0-ad2c-b20e61928a64" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "49eb2d8e-5927-446f-99d0-8f750bcb600b" + }, + "attachedElementGuid" : { + "value" : "56a7c80a-d417-4f29-8a61-bd43f017adc3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -4, + "y" : 0, + "z" : 89 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "49eb2d8e-5927-446f-99d0-8f750bcb600b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "49eb2d8e-5927-446f-99d0-8f750bcb600b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "49eb2d8e-5927-446f-99d0-8f750bcb600b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f1dd1fc3-3e13-4afd-82c3-02aa040dbe1a" + }, + "attachedElementGuid" : { + "value" : "56a7c80a-d417-4f29-8a61-bd43f017adc3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 98 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f1dd1fc3-3e13-4afd-82c3-02aa040dbe1a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f1dd1fc3-3e13-4afd-82c3-02aa040dbe1a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f1dd1fc3-3e13-4afd-82c3-02aa040dbe1a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "709ce1c1-6fab-4940-ad11-386ae67c55e9" + }, + "attachedElementGuid" : { + "value" : "56a7c80a-d417-4f29-8a61-bd43f017adc3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 106 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "709ce1c1-6fab-4940-ad11-386ae67c55e9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "709ce1c1-6fab-4940-ad11-386ae67c55e9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "709ce1c1-6fab-4940-ad11-386ae67c55e9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "409e5e5c-7aaf-4252-a5ff-e1e98cbe7c9a" + }, + "attachedElementGuid" : { + "value" : "56a7c80a-d417-4f29-8a61-bd43f017adc3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 114 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "409e5e5c-7aaf-4252-a5ff-e1e98cbe7c9a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "409e5e5c-7aaf-4252-a5ff-e1e98cbe7c9a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "409e5e5c-7aaf-4252-a5ff-e1e98cbe7c9a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9db5e6a7-133a-4a15-8769-64efbc1e8392" + }, + "attachedElementGuid" : { + "value" : "56a7c80a-d417-4f29-8a61-bd43f017adc3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 122 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9db5e6a7-133a-4a15-8769-64efbc1e8392" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9db5e6a7-133a-4a15-8769-64efbc1e8392" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "9db5e6a7-133a-4a15-8769-64efbc1e8392" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0890f994-43da-4be2-aaa1-5214d0aa0c28" + }, + "attachedElementGuid" : { + "value" : "56a7c80a-d417-4f29-8a61-bd43f017adc3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 130 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0890f994-43da-4be2-aaa1-5214d0aa0c28" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0890f994-43da-4be2-aaa1-5214d0aa0c28" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0890f994-43da-4be2-aaa1-5214d0aa0c28" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a529be06-cac8-4c18-874f-cbd17501b012" + }, + "attachedElementGuid" : { + "value" : "56a7c80a-d417-4f29-8a61-bd43f017adc3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 138 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a529be06-cac8-4c18-874f-cbd17501b012" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a529be06-cac8-4c18-874f-cbd17501b012" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a529be06-cac8-4c18-874f-cbd17501b012" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "New Track", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2da5b7d0-e925-49f7-b7f4-61146437d560" + }, + "attachedElementGuid" : { + "value" : "b1a55782-54c7-42ae-908e-91c3be9b03c2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2da5b7d0-e925-49f7-b7f4-61146437d560" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2da5b7d0-e925-49f7-b7f4-61146437d560" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 1, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "2da5b7d0-e925-49f7-b7f4-61146437d560" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 19.764, + "trackEndTime" : 22.588, + "visibleTrackTimeLength" : 10, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "2da5b7d0-e925-49f7-b7f4-61146437d560" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "39708205-63b5-4bbe-8e9a-f12a88f04e46" + }, + "attachedElementGuid" : { + "value" : "2da5b7d0-e925-49f7-b7f4-61146437d560" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "39708205-63b5-4bbe-8e9a-f12a88f04e46" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 19.764 + },{ + "value" : false, + "time" : 22.588 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "69473077-a7da-4ddf-9879-3da85adef868" + }, + "attachedElementGuid" : { + "value" : "39708205-63b5-4bbe-8e9a-f12a88f04e46" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "69473077-a7da-4ddf-9879-3da85adef868" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "69473077-a7da-4ddf-9879-3da85adef868" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "69473077-a7da-4ddf-9879-3da85adef868" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Displacement_BM,Assembly-CSharp", + "positionX" : { + "animatedFloatList" : [ + + ] + }, + "positionY" : { + "animatedFloatList" : [ + + ] + }, + "positionZ" : { + "animatedFloatList" : [ + + ] + }, + "elementName" : "New Displacement", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5cd672ab-d080-4760-a515-87e6ff3406a0" + }, + "attachedElementGuid" : { + "value" : "69473077-a7da-4ddf-9879-3da85adef868" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5cd672ab-d080-4760-a515-87e6ff3406a0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9cca472a-a3be-431d-80f2-dfe796ed44b1" + }, + "attachedElementGuid" : { + "value" : "2da5b7d0-e925-49f7-b7f4-61146437d560" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 106 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9cca472a-a3be-431d-80f2-dfe796ed44b1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9cca472a-a3be-431d-80f2-dfe796ed44b1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "9cca472a-a3be-431d-80f2-dfe796ed44b1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8cb9fa48-c8eb-4b63-886f-6ecda3f5e621" + }, + "attachedElementGuid" : { + "value" : "2da5b7d0-e925-49f7-b7f4-61146437d560" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -12, + "y" : 0, + "z" : 114 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8cb9fa48-c8eb-4b63-886f-6ecda3f5e621" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8cb9fa48-c8eb-4b63-886f-6ecda3f5e621" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8cb9fa48-c8eb-4b63-886f-6ecda3f5e621" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fa55fa8b-093d-4435-a86c-e44efb3ca90d" + }, + "attachedElementGuid" : { + "value" : "2da5b7d0-e925-49f7-b7f4-61146437d560" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -12, + "y" : 0, + "z" : 122 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "fa55fa8b-093d-4435-a86c-e44efb3ca90d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fa55fa8b-093d-4435-a86c-e44efb3ca90d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "fa55fa8b-093d-4435-a86c-e44efb3ca90d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f639b488-5ed9-474f-93fd-f84ea2093bd4" + }, + "attachedElementGuid" : { + "value" : "2da5b7d0-e925-49f7-b7f4-61146437d560" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -12, + "y" : 0, + "z" : 130 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f639b488-5ed9-474f-93fd-f84ea2093bd4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f639b488-5ed9-474f-93fd-f84ea2093bd4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f639b488-5ed9-474f-93fd-f84ea2093bd4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fbcab0ba-c0bb-4be2-8374-d0f7b11c633c" + }, + "attachedElementGuid" : { + "value" : "2da5b7d0-e925-49f7-b7f4-61146437d560" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -12, + "y" : 0, + "z" : 138 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "fbcab0ba-c0bb-4be2-8374-d0f7b11c633c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fbcab0ba-c0bb-4be2-8374-d0f7b11c633c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "fbcab0ba-c0bb-4be2-8374-d0f7b11c633c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Displacement_BM,Assembly-CSharp", + "positionX" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : -1, + "startTime" : 18.352, + "endTime" : 19.058, + "animationCurveType" : 2 + },{ + "startValue" : -1, + "endValue" : 0, + "startTime" : 19.058, + "endTime" : 19.764, + "animationCurveType" : 0 + } + ] + }, + "positionY" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 5, + "startTime" : 11.294, + "endTime" : 12, + "animationCurveType" : 2 + },{ + "startValue" : 5, + "endValue" : 0, + "startTime" : 12, + "endTime" : 12.705, + "animationCurveType" : 1 + },{ + "startValue" : 0, + "endValue" : 5, + "startTime" : 12.705, + "endTime" : 13.411, + "animationCurveType" : 2 + },{ + "startValue" : 5, + "endValue" : 0, + "startTime" : 13.411, + "endTime" : 14.117, + "animationCurveType" : 1 + },{ + "startValue" : 0, + "endValue" : 5, + "startTime" : 14.117, + "endTime" : 14.823, + "animationCurveType" : 2 + },{ + "startValue" : 5, + "endValue" : 0, + "startTime" : 14.823, + "endTime" : 15.529, + "animationCurveType" : 1 + },{ + "startValue" : 0, + "endValue" : 5, + "startTime" : 15.529, + "endTime" : 16.235, + "animationCurveType" : 2 + },{ + "startValue" : 5, + "endValue" : 0, + "startTime" : 16.235, + "endTime" : 16.941, + "animationCurveType" : 1 + },{ + "startValue" : 0, + "endValue" : 5, + "startTime" : 16.941, + "endTime" : 17.647, + "animationCurveType" : 2 + },{ + "startValue" : 5, + "endValue" : 0, + "startTime" : 17.647, + "endTime" : 18.352, + "animationCurveType" : 1 + },{ + "startValue" : 0, + "endValue" : 5, + "startTime" : 18.352, + "endTime" : 19.058, + "animationCurveType" : 2 + },{ + "startValue" : 5, + "endValue" : 0, + "startTime" : 19.058, + "endTime" : 19.764, + "animationCurveType" : 1 + } + ] + }, + "positionZ" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 1.3, + "startTime" : 18.352, + "endTime" : 19.764, + "animationCurveType" : 0 + },{ + "startValue" : 1.3, + "endValue" : 0, + "startTime" : 19.764, + "endTime" : 20.029, + "animationCurveType" : 0 + } + ] + }, + "elementName" : "New Displacement", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f082ee34-2d99-48f0-b419-c8f9391e2223" + }, + "attachedElementGuid" : { + "value" : "89646b85-1142-467c-9ef0-315b857387d0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f082ee34-2d99-48f0-b419-c8f9391e2223" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 19.764, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "14e3dcc6-eb08-47a6-82d5-2f65930beeb3" + }, + "attachedElementGuid" : { + "value" : "2da5b7d0-e925-49f7-b7f4-61146437d560" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "14e3dcc6-eb08-47a6-82d5-2f65930beeb3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + + ], + "attachedElementGuid" : { + "value" : "14e3dcc6-eb08-47a6-82d5-2f65930beeb3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "14e3dcc6-eb08-47a6-82d5-2f65930beeb3" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "46758f74-d10d-45c6-aef0-cda927e5c1dd" + }, + "attachedElementGuid" : { + "value" : "14e3dcc6-eb08-47a6-82d5-2f65930beeb3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "46758f74-d10d-45c6-aef0-cda927e5c1dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "46758f74-d10d-45c6-aef0-cda927e5c1dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "46758f74-d10d-45c6-aef0-cda927e5c1dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 11.294, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "46758f74-d10d-45c6-aef0-cda927e5c1dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "New Track", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f4a218db-2e0c-4bcd-8551-ac9277534b41" + }, + "attachedElementGuid" : { + "value" : "b1a55782-54c7-42ae-908e-91c3be9b03c2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f4a218db-2e0c-4bcd-8551-ac9277534b41" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f4a218db-2e0c-4bcd-8551-ac9277534b41" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 1, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "f4a218db-2e0c-4bcd-8551-ac9277534b41" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 20.029, + "trackEndTime" : 22.588, + "visibleTrackTimeLength" : 10, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "f4a218db-2e0c-4bcd-8551-ac9277534b41" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "560c67e8-bb4a-4d71-b083-e7e16a3947be" + }, + "attachedElementGuid" : { + "value" : "f4a218db-2e0c-4bcd-8551-ac9277534b41" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "560c67e8-bb4a-4d71-b083-e7e16a3947be" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 20.029 + },{ + "value" : false, + "time" : 22.588 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "81a1c354-fe45-4790-81b6-3e04a8e6fdb5" + }, + "attachedElementGuid" : { + "value" : "560c67e8-bb4a-4d71-b083-e7e16a3947be" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "81a1c354-fe45-4790-81b6-3e04a8e6fdb5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "81a1c354-fe45-4790-81b6-3e04a8e6fdb5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "81a1c354-fe45-4790-81b6-3e04a8e6fdb5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Displacement_BM,Assembly-CSharp", + "positionX" : { + "animatedFloatList" : [ + + ] + }, + "positionY" : { + "animatedFloatList" : [ + + ] + }, + "positionZ" : { + "animatedFloatList" : [ + + ] + }, + "elementName" : "New Displacement", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ecea7a3b-227a-4281-bbb8-8362f76e3b76" + }, + "attachedElementGuid" : { + "value" : "81a1c354-fe45-4790-81b6-3e04a8e6fdb5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ecea7a3b-227a-4281-bbb8-8362f76e3b76" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6d408dad-0dfb-4c81-bcef-095e53a22fa5" + }, + "attachedElementGuid" : { + "value" : "f4a218db-2e0c-4bcd-8551-ac9277534b41" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 109 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6d408dad-0dfb-4c81-bcef-095e53a22fa5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6d408dad-0dfb-4c81-bcef-095e53a22fa5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6d408dad-0dfb-4c81-bcef-095e53a22fa5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "adf9d000-579c-420a-b3c6-50b37c26fcd3" + }, + "attachedElementGuid" : { + "value" : "f4a218db-2e0c-4bcd-8551-ac9277534b41" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 12, + "y" : 0, + "z" : 114 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "adf9d000-579c-420a-b3c6-50b37c26fcd3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "adf9d000-579c-420a-b3c6-50b37c26fcd3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "adf9d000-579c-420a-b3c6-50b37c26fcd3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "87943f98-46bd-4493-a0db-1ffb2b51cc96" + }, + "attachedElementGuid" : { + "value" : "f4a218db-2e0c-4bcd-8551-ac9277534b41" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 12, + "y" : 0, + "z" : 122 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "87943f98-46bd-4493-a0db-1ffb2b51cc96" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "87943f98-46bd-4493-a0db-1ffb2b51cc96" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "87943f98-46bd-4493-a0db-1ffb2b51cc96" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8b05026c-a8ad-4b30-bb7b-33a4396b0fc3" + }, + "attachedElementGuid" : { + "value" : "f4a218db-2e0c-4bcd-8551-ac9277534b41" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 12, + "y" : 0, + "z" : 130 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8b05026c-a8ad-4b30-bb7b-33a4396b0fc3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8b05026c-a8ad-4b30-bb7b-33a4396b0fc3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8b05026c-a8ad-4b30-bb7b-33a4396b0fc3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "79b9246e-3890-4bae-bc78-a7f41431296f" + }, + "attachedElementGuid" : { + "value" : "f4a218db-2e0c-4bcd-8551-ac9277534b41" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 12, + "y" : 0, + "z" : 138 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "79b9246e-3890-4bae-bc78-a7f41431296f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "79b9246e-3890-4bae-bc78-a7f41431296f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "79b9246e-3890-4bae-bc78-a7f41431296f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "New Track", + "tags" : [ + + ], + "elementGuid" : { + "value" : "10817b23-d9ff-41bd-b77b-ed9f7f926f50" + }, + "attachedElementGuid" : { + "value" : "b1a55782-54c7-42ae-908e-91c3be9b03c2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "10817b23-d9ff-41bd-b77b-ed9f7f926f50" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "10817b23-d9ff-41bd-b77b-ed9f7f926f50" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 1, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "10817b23-d9ff-41bd-b77b-ed9f7f926f50" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 20.47, + "trackEndTime" : 22.588, + "visibleTrackTimeLength" : 10, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "10817b23-d9ff-41bd-b77b-ed9f7f926f50" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2045317a-ade9-46fd-b5b1-a04a5d5cb988" + }, + "attachedElementGuid" : { + "value" : "10817b23-d9ff-41bd-b77b-ed9f7f926f50" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2045317a-ade9-46fd-b5b1-a04a5d5cb988" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 20.47 + },{ + "value" : false, + "time" : 22.588 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e765401d-0c73-4f2a-8a36-759a2a030ccd" + }, + "attachedElementGuid" : { + "value" : "2045317a-ade9-46fd-b5b1-a04a5d5cb988" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e765401d-0c73-4f2a-8a36-759a2a030ccd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e765401d-0c73-4f2a-8a36-759a2a030ccd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "e765401d-0c73-4f2a-8a36-759a2a030ccd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Displacement_BM,Assembly-CSharp", + "positionX" : { + "animatedFloatList" : [ + + ] + }, + "positionY" : { + "animatedFloatList" : [ + + ] + }, + "positionZ" : { + "animatedFloatList" : [ + + ] + }, + "elementName" : "New Displacement", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9011a1ef-64a0-4841-a381-30136216073b" + }, + "attachedElementGuid" : { + "value" : "e765401d-0c73-4f2a-8a36-759a2a030ccd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9011a1ef-64a0-4841-a381-30136216073b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "46c8770f-ec21-491a-9c5c-a7aa6011c42e" + }, + "attachedElementGuid" : { + "value" : "10817b23-d9ff-41bd-b77b-ed9f7f926f50" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 114 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "46c8770f-ec21-491a-9c5c-a7aa6011c42e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "46c8770f-ec21-491a-9c5c-a7aa6011c42e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "46c8770f-ec21-491a-9c5c-a7aa6011c42e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "88231935-7260-4181-a1c5-2b32a56825a4" + }, + "attachedElementGuid" : { + "value" : "10817b23-d9ff-41bd-b77b-ed9f7f926f50" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -6, + "y" : 0, + "z" : 122 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "88231935-7260-4181-a1c5-2b32a56825a4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "88231935-7260-4181-a1c5-2b32a56825a4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "88231935-7260-4181-a1c5-2b32a56825a4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a04fbc22-1080-438f-8e45-d7028a5eb9fd" + }, + "attachedElementGuid" : { + "value" : "10817b23-d9ff-41bd-b77b-ed9f7f926f50" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -6, + "y" : 0, + "z" : 130 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a04fbc22-1080-438f-8e45-d7028a5eb9fd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a04fbc22-1080-438f-8e45-d7028a5eb9fd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a04fbc22-1080-438f-8e45-d7028a5eb9fd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "501e0852-387e-4a01-9c5e-62a5f441193c" + }, + "attachedElementGuid" : { + "value" : "10817b23-d9ff-41bd-b77b-ed9f7f926f50" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -6, + "y" : 0, + "z" : 138 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "501e0852-387e-4a01-9c5e-62a5f441193c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "501e0852-387e-4a01-9c5e-62a5f441193c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "501e0852-387e-4a01-9c5e-62a5f441193c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 20.029, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ce7b1c25-411b-4087-bc27-e977c28ffb7f" + }, + "attachedElementGuid" : { + "value" : "f4a218db-2e0c-4bcd-8551-ac9277534b41" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ce7b1c25-411b-4087-bc27-e977c28ffb7f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + + ], + "attachedElementGuid" : { + "value" : "ce7b1c25-411b-4087-bc27-e977c28ffb7f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "ce7b1c25-411b-4087-bc27-e977c28ffb7f" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e327d935-ab23-4762-ad7b-bea765d05ae0" + }, + "attachedElementGuid" : { + "value" : "ce7b1c25-411b-4087-bc27-e977c28ffb7f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e327d935-ab23-4762-ad7b-bea765d05ae0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e327d935-ab23-4762-ad7b-bea765d05ae0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e327d935-ab23-4762-ad7b-bea765d05ae0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 11.294, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "e327d935-ab23-4762-ad7b-bea765d05ae0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 20.47, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c65e6369-92ba-4ea6-9709-db10953a5358" + }, + "attachedElementGuid" : { + "value" : "10817b23-d9ff-41bd-b77b-ed9f7f926f50" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c65e6369-92ba-4ea6-9709-db10953a5358" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + + ], + "attachedElementGuid" : { + "value" : "c65e6369-92ba-4ea6-9709-db10953a5358" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "c65e6369-92ba-4ea6-9709-db10953a5358" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ebb855c1-7daa-4f11-9afc-508732baa80b" + }, + "attachedElementGuid" : { + "value" : "c65e6369-92ba-4ea6-9709-db10953a5358" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ebb855c1-7daa-4f11-9afc-508732baa80b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ebb855c1-7daa-4f11-9afc-508732baa80b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ebb855c1-7daa-4f11-9afc-508732baa80b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 11.294, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "ebb855c1-7daa-4f11-9afc-508732baa80b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "New Track", + "tags" : [ + + ], + "elementGuid" : { + "value" : "087b70f0-ecfc-40c2-9632-2e86f773b667" + }, + "attachedElementGuid" : { + "value" : "b1a55782-54c7-42ae-908e-91c3be9b03c2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "087b70f0-ecfc-40c2-9632-2e86f773b667" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "087b70f0-ecfc-40c2-9632-2e86f773b667" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 1, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "087b70f0-ecfc-40c2-9632-2e86f773b667" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 20.735, + "trackEndTime" : 22.588, + "visibleTrackTimeLength" : 10, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "087b70f0-ecfc-40c2-9632-2e86f773b667" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bda0fe57-5315-420a-9a37-e04603009e52" + }, + "attachedElementGuid" : { + "value" : "087b70f0-ecfc-40c2-9632-2e86f773b667" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bda0fe57-5315-420a-9a37-e04603009e52" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 20.735 + },{ + "value" : false, + "time" : 22.588 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4f937578-d2a8-4c26-8127-87adf7215678" + }, + "attachedElementGuid" : { + "value" : "bda0fe57-5315-420a-9a37-e04603009e52" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4f937578-d2a8-4c26-8127-87adf7215678" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4f937578-d2a8-4c26-8127-87adf7215678" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "4f937578-d2a8-4c26-8127-87adf7215678" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Displacement_BM,Assembly-CSharp", + "positionX" : { + "animatedFloatList" : [ + + ] + }, + "positionY" : { + "animatedFloatList" : [ + + ] + }, + "positionZ" : { + "animatedFloatList" : [ + + ] + }, + "elementName" : "New Displacement", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6e0394c1-2a12-443b-91ae-ab55eaf61930" + }, + "attachedElementGuid" : { + "value" : "4f937578-d2a8-4c26-8127-87adf7215678" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6e0394c1-2a12-443b-91ae-ab55eaf61930" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cf87868e-3f8a-4a65-8217-be29770de914" + }, + "attachedElementGuid" : { + "value" : "087b70f0-ecfc-40c2-9632-2e86f773b667" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 117 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "cf87868e-3f8a-4a65-8217-be29770de914" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "cf87868e-3f8a-4a65-8217-be29770de914" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "cf87868e-3f8a-4a65-8217-be29770de914" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ec65a07e-e9a0-48b4-8912-32fc63393d61" + }, + "attachedElementGuid" : { + "value" : "087b70f0-ecfc-40c2-9632-2e86f773b667" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 6, + "y" : 0, + "z" : 122 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ec65a07e-e9a0-48b4-8912-32fc63393d61" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ec65a07e-e9a0-48b4-8912-32fc63393d61" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ec65a07e-e9a0-48b4-8912-32fc63393d61" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "07613a95-b088-4993-8978-82af6af8f78b" + }, + "attachedElementGuid" : { + "value" : "087b70f0-ecfc-40c2-9632-2e86f773b667" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 6, + "y" : 0, + "z" : 130 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "07613a95-b088-4993-8978-82af6af8f78b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "07613a95-b088-4993-8978-82af6af8f78b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "07613a95-b088-4993-8978-82af6af8f78b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6c45a347-98cf-4c86-9a58-cd1ef400cfb5" + }, + "attachedElementGuid" : { + "value" : "087b70f0-ecfc-40c2-9632-2e86f773b667" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 6, + "y" : 0, + "z" : 138 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6c45a347-98cf-4c86-9a58-cd1ef400cfb5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6c45a347-98cf-4c86-9a58-cd1ef400cfb5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6c45a347-98cf-4c86-9a58-cd1ef400cfb5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 20.735, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "646ff8f8-e1b2-46ec-a041-81aa3dcedabf" + }, + "attachedElementGuid" : { + "value" : "087b70f0-ecfc-40c2-9632-2e86f773b667" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "646ff8f8-e1b2-46ec-a041-81aa3dcedabf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + + ], + "attachedElementGuid" : { + "value" : "646ff8f8-e1b2-46ec-a041-81aa3dcedabf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "646ff8f8-e1b2-46ec-a041-81aa3dcedabf" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e8eec4e8-1b6b-4985-82e8-a0566cda890f" + }, + "attachedElementGuid" : { + "value" : "646ff8f8-e1b2-46ec-a041-81aa3dcedabf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e8eec4e8-1b6b-4985-82e8-a0566cda890f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e8eec4e8-1b6b-4985-82e8-a0566cda890f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e8eec4e8-1b6b-4985-82e8-a0566cda890f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 11.294, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "e8eec4e8-1b6b-4985-82e8-a0566cda890f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 20.117, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ec1a4bed-b370-4ffc-85cc-7ede59364e32" + }, + "attachedElementGuid" : { + "value" : "f4a218db-2e0c-4bcd-8551-ac9277534b41" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ec1a4bed-b370-4ffc-85cc-7ede59364e32" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "ec1a4bed-b370-4ffc-85cc-7ede59364e32" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "ec1a4bed-b370-4ffc-85cc-7ede59364e32" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "22f1d59b-1932-4fc5-a1ca-03512d766082" + }, + "attachedElementGuid" : { + "value" : "ec1a4bed-b370-4ffc-85cc-7ede59364e32" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "22f1d59b-1932-4fc5-a1ca-03512d766082" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "22f1d59b-1932-4fc5-a1ca-03512d766082" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "22f1d59b-1932-4fc5-a1ca-03512d766082" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "22f1d59b-1932-4fc5-a1ca-03512d766082" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 19.852, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5ef7c6db-1baa-4881-98c6-e6d79defcdec" + }, + "attachedElementGuid" : { + "value" : "2da5b7d0-e925-49f7-b7f4-61146437d560" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5ef7c6db-1baa-4881-98c6-e6d79defcdec" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "5ef7c6db-1baa-4881-98c6-e6d79defcdec" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "5ef7c6db-1baa-4881-98c6-e6d79defcdec" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b2da584f-29ed-44b6-a688-5270893f78f2" + }, + "attachedElementGuid" : { + "value" : "5ef7c6db-1baa-4881-98c6-e6d79defcdec" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b2da584f-29ed-44b6-a688-5270893f78f2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b2da584f-29ed-44b6-a688-5270893f78f2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b2da584f-29ed-44b6-a688-5270893f78f2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "b2da584f-29ed-44b6-a688-5270893f78f2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 19.941, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2e1d2636-1ba8-4cc3-ad48-a24b8cca48bf" + }, + "attachedElementGuid" : { + "value" : "2da5b7d0-e925-49f7-b7f4-61146437d560" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2e1d2636-1ba8-4cc3-ad48-a24b8cca48bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "2e1d2636-1ba8-4cc3-ad48-a24b8cca48bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "2e1d2636-1ba8-4cc3-ad48-a24b8cca48bf" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2746c1c8-3dea-4281-9aac-68cde2f7ce43" + }, + "attachedElementGuid" : { + "value" : "2e1d2636-1ba8-4cc3-ad48-a24b8cca48bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2746c1c8-3dea-4281-9aac-68cde2f7ce43" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2746c1c8-3dea-4281-9aac-68cde2f7ce43" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "2746c1c8-3dea-4281-9aac-68cde2f7ce43" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "2746c1c8-3dea-4281-9aac-68cde2f7ce43" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 20.205, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "dd1b2272-0802-4dd0-827b-dc2c5d3ac57c" + }, + "attachedElementGuid" : { + "value" : "f4a218db-2e0c-4bcd-8551-ac9277534b41" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "dd1b2272-0802-4dd0-827b-dc2c5d3ac57c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "dd1b2272-0802-4dd0-827b-dc2c5d3ac57c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "dd1b2272-0802-4dd0-827b-dc2c5d3ac57c" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a2091458-3da4-4867-a549-c67ebcffd986" + }, + "attachedElementGuid" : { + "value" : "dd1b2272-0802-4dd0-827b-dc2c5d3ac57c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a2091458-3da4-4867-a549-c67ebcffd986" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a2091458-3da4-4867-a549-c67ebcffd986" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a2091458-3da4-4867-a549-c67ebcffd986" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "a2091458-3da4-4867-a549-c67ebcffd986" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 20.558, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "592d67e3-5385-4948-9362-779a4f9c4567" + }, + "attachedElementGuid" : { + "value" : "10817b23-d9ff-41bd-b77b-ed9f7f926f50" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "592d67e3-5385-4948-9362-779a4f9c4567" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "592d67e3-5385-4948-9362-779a4f9c4567" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "592d67e3-5385-4948-9362-779a4f9c4567" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3215fdf9-12e6-4115-8548-fa8f629a6db5" + }, + "attachedElementGuid" : { + "value" : "592d67e3-5385-4948-9362-779a4f9c4567" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3215fdf9-12e6-4115-8548-fa8f629a6db5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3215fdf9-12e6-4115-8548-fa8f629a6db5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3215fdf9-12e6-4115-8548-fa8f629a6db5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "3215fdf9-12e6-4115-8548-fa8f629a6db5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 20.647, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9b9f8736-0d11-4147-90a2-098d9590fc7b" + }, + "attachedElementGuid" : { + "value" : "10817b23-d9ff-41bd-b77b-ed9f7f926f50" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9b9f8736-0d11-4147-90a2-098d9590fc7b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "9b9f8736-0d11-4147-90a2-098d9590fc7b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "9b9f8736-0d11-4147-90a2-098d9590fc7b" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1b2beadd-3baf-44c1-a874-c5104b72b3fc" + }, + "attachedElementGuid" : { + "value" : "9b9f8736-0d11-4147-90a2-098d9590fc7b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "1b2beadd-3baf-44c1-a874-c5104b72b3fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1b2beadd-3baf-44c1-a874-c5104b72b3fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "1b2beadd-3baf-44c1-a874-c5104b72b3fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "1b2beadd-3baf-44c1-a874-c5104b72b3fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 20.823, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3b845993-6ee7-4147-9bcd-4533540db274" + }, + "attachedElementGuid" : { + "value" : "087b70f0-ecfc-40c2-9632-2e86f773b667" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3b845993-6ee7-4147-9bcd-4533540db274" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "3b845993-6ee7-4147-9bcd-4533540db274" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "3b845993-6ee7-4147-9bcd-4533540db274" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fd5c2067-fa1f-4347-95eb-a2948fd39f37" + }, + "attachedElementGuid" : { + "value" : "3b845993-6ee7-4147-9bcd-4533540db274" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "fd5c2067-fa1f-4347-95eb-a2948fd39f37" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fd5c2067-fa1f-4347-95eb-a2948fd39f37" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "fd5c2067-fa1f-4347-95eb-a2948fd39f37" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "fd5c2067-fa1f-4347-95eb-a2948fd39f37" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 20.911, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2dadbeb9-e84e-4c2c-a8a0-0a38f9e9d21a" + }, + "attachedElementGuid" : { + "value" : "087b70f0-ecfc-40c2-9632-2e86f773b667" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2dadbeb9-e84e-4c2c-a8a0-0a38f9e9d21a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "2dadbeb9-e84e-4c2c-a8a0-0a38f9e9d21a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "2dadbeb9-e84e-4c2c-a8a0-0a38f9e9d21a" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5332e55d-74ad-49b9-b180-ed0de80f7a0e" + }, + "attachedElementGuid" : { + "value" : "2dadbeb9-e84e-4c2c-a8a0-0a38f9e9d21a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5332e55d-74ad-49b9-b180-ed0de80f7a0e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5332e55d-74ad-49b9-b180-ed0de80f7a0e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5332e55d-74ad-49b9-b180-ed0de80f7a0e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "5332e55d-74ad-49b9-b180-ed0de80f7a0e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp", + "elementName" : "effect", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e127cd4a-8578-4426-b03f-eca4e25a6ff8" + }, + "attachedElementGuid" : { + "value" : "00000000-0000-0000-0000-000000000000" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e127cd4a-8578-4426-b03f-eca4e25a6ff8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e127cd4a-8578-4426-b03f-eca4e25a6ff8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeEffectsCollection_BM,Assembly-CSharp", + "time" : 21.176, + "elementName" : "p1\/\/修改\/\/", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d0f32f30-c290-4fa3-844d-4402a37e33f1" + }, + "attachedElementGuid" : { + "value" : "e127cd4a-8578-4426-b03f-eca4e25a6ff8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d0f32f30-c290-4fa3-844d-4402a37e33f1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Prior":[ + + ],"Default":[ + { + "__type" : "Ichni.RhythmGame.Beatmap.VignetteEffect_BM,Assembly-CSharp", + "duration" : 1.059, + "peak" : 1, + "smoothness" : 1, + "color" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "intensityCurve" : { + "keys" : [ + { + "time" : 0, + "value" : 0, + "inTangent" : 0, + "outTangent" : 0 + },{ + "time" : 0.2575, + "value" : 0.343333334, + "inTangent" : -5.978235, + "outTangent" : -3.66712236 + },{ + "time" : 1, + "value" : 0, + "inTangent" : 0, + "outTangent" : 0 + } + ], + "preWrapMode" : 8, + "postWrapMode" : 8 + }, + "effectTime" : 0 + } + ],"Late":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d0f32f30-c290-4fa3-844d-4402a37e33f1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp", + "elementName" : "p2", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fdee11b9-1c7a-4786-bc01-acc4501162c5" + }, + "attachedElementGuid" : { + "value" : "00000000-0000-0000-0000-000000000000" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "fdee11b9-1c7a-4786-bc01-acc4501162c5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fdee11b9-1c7a-4786-bc01-acc4501162c5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp", + "elementName" : "note", + "tags" : [ + + ], + "elementGuid" : { + "value" : "45a73110-1309-4605-a714-9fe6fe861b87" + }, + "attachedElementGuid" : { + "value" : "fdee11b9-1c7a-4786-bc01-acc4501162c5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "45a73110-1309-4605-a714-9fe6fe861b87" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "45a73110-1309-4605-a714-9fe6fe861b87" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp", + "elementName" : "Particle", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8e767606-ed55-4b13-bab9-7031e475074c" + }, + "attachedElementGuid" : { + "value" : "fdee11b9-1c7a-4786-bc01-acc4501162c5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8e767606-ed55-4b13-bab9-7031e475074c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8e767606-ed55-4b13-bab9-7031e475074c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "New Track", + "tags" : [ + + ], + "elementGuid" : { + "value" : "53d6da64-8522-45ad-a0e0-affebf607d8d" + }, + "attachedElementGuid" : { + "value" : "8e767606-ed55-4b13-bab9-7031e475074c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "53d6da64-8522-45ad-a0e0-affebf607d8d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "53d6da64-8522-45ad-a0e0-affebf607d8d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 0, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "53d6da64-8522-45ad-a0e0-affebf607d8d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 22.588, + "trackEndTime" : 35.294, + "visibleTrackTimeLength" : 1, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "53d6da64-8522-45ad-a0e0-affebf607d8d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0c842704-284f-4c40-97aa-26ed9dd28929" + }, + "attachedElementGuid" : { + "value" : "53d6da64-8522-45ad-a0e0-affebf607d8d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 10, + "z" : 436 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0c842704-284f-4c40-97aa-26ed9dd28929" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0c842704-284f-4c40-97aa-26ed9dd28929" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0c842704-284f-4c40-97aa-26ed9dd28929" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2a99f0b4-3721-4a6e-954b-1737b649419d" + }, + "attachedElementGuid" : { + "value" : "53d6da64-8522-45ad-a0e0-affebf607d8d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 10, + "z" : 128 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2a99f0b4-3721-4a6e-954b-1737b649419d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2a99f0b4-3721-4a6e-954b-1737b649419d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "2a99f0b4-3721-4a6e-954b-1737b649419d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "22.588-35.294", + "tags" : [ + + ], + "elementGuid" : { + "value" : "14a5cf71-e15b-49f3-8d3d-abbc2a10c9a3" + }, + "attachedElementGuid" : { + "value" : "4ee7f15e-c6f6-40e5-b9e8-8e4887afe797" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "14a5cf71-e15b-49f3-8d3d-abbc2a10c9a3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "14a5cf71-e15b-49f3-8d3d-abbc2a10c9a3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 0, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "14a5cf71-e15b-49f3-8d3d-abbc2a10c9a3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 22.588, + "trackEndTime" : 35.294, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "14a5cf71-e15b-49f3-8d3d-abbc2a10c9a3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c5adc64f-f1b6-4add-a077-62122853f590" + }, + "attachedElementGuid" : { + "value" : "14a5cf71-e15b-49f3-8d3d-abbc2a10c9a3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 7, + "z" : 128 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c5adc64f-f1b6-4add-a077-62122853f590" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c5adc64f-f1b6-4add-a077-62122853f590" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c5adc64f-f1b6-4add-a077-62122853f590" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "63cea926-a587-4220-8b95-bc3d0768ea66" + }, + "attachedElementGuid" : { + "value" : "14a5cf71-e15b-49f3-8d3d-abbc2a10c9a3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 7, + "z" : 416 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "63cea926-a587-4220-8b95-bc3d0768ea66" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "63cea926-a587-4220-8b95-bc3d0768ea66" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "63cea926-a587-4220-8b95-bc3d0768ea66" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "New Track", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0cefdc0b-f47c-4dcf-bab1-8c47c5f6f0bc" + }, + "attachedElementGuid" : { + "value" : "45a73110-1309-4605-a714-9fe6fe861b87" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0cefdc0b-f47c-4dcf-bab1-8c47c5f6f0bc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0cefdc0b-f47c-4dcf-bab1-8c47c5f6f0bc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 1, + "trackSamplingType" : 1, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "0cefdc0b-f47c-4dcf-bab1-8c47c5f6f0bc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 22.235, + "trackEndTime" : 35.294, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "0cefdc0b-f47c-4dcf-bab1-8c47c5f6f0bc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "New Track", + "tags" : [ + + ], + "elementGuid" : { + "value" : "88b99193-3259-4a73-81cb-391f8698662e" + }, + "attachedElementGuid" : { + "value" : "45a73110-1309-4605-a714-9fe6fe861b87" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "88b99193-3259-4a73-81cb-391f8698662e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "88b99193-3259-4a73-81cb-391f8698662e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 1, + "trackSamplingType" : 1, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "88b99193-3259-4a73-81cb-391f8698662e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 22.235, + "trackEndTime" : 35.294, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "88b99193-3259-4a73-81cb-391f8698662e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "New Track", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8c18ef6a-20ba-49f1-bdda-291982154820" + }, + "attachedElementGuid" : { + "value" : "45a73110-1309-4605-a714-9fe6fe861b87" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8c18ef6a-20ba-49f1-bdda-291982154820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8c18ef6a-20ba-49f1-bdda-291982154820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 1, + "trackSamplingType" : 1, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "8c18ef6a-20ba-49f1-bdda-291982154820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 22.235, + "trackEndTime" : 35.294, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "8c18ef6a-20ba-49f1-bdda-291982154820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "New Track", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3bbf2358-c25e-4d7b-ac86-48e6781f61fc" + }, + "attachedElementGuid" : { + "value" : "45a73110-1309-4605-a714-9fe6fe861b87" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3bbf2358-c25e-4d7b-ac86-48e6781f61fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3bbf2358-c25e-4d7b-ac86-48e6781f61fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 1, + "trackSamplingType" : 1, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "3bbf2358-c25e-4d7b-ac86-48e6781f61fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 22.235, + "trackEndTime" : 35.294, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "3bbf2358-c25e-4d7b-ac86-48e6781f61fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "New Track", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9d002211-bbd3-45c5-a804-9b399aa1d03a" + }, + "attachedElementGuid" : { + "value" : "45a73110-1309-4605-a714-9fe6fe861b87" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9d002211-bbd3-45c5-a804-9b399aa1d03a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9d002211-bbd3-45c5-a804-9b399aa1d03a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 1, + "trackSamplingType" : 1, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "9d002211-bbd3-45c5-a804-9b399aa1d03a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 22.235, + "trackEndTime" : 35.294, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "9d002211-bbd3-45c5-a804-9b399aa1d03a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ParticleTracker_BM,Assembly-CSharp", + "prewarm" : true, + "playTime" : 22.588, + "stopTime" : 35.294, + "is3D" : true, + "width" : 60, + "extendDirection" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "density" : 10, + "lifeTime" : 20, + "isAutoOrient" : true, + "particleRotation" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "materialThemeBundleName" : "basic", + "materialName" : "Basic_Particle_Orb_0", + "elementName" : "New Particle Tracker", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ab450b0e-54fc-474c-a8fb-dd518ccd7b39" + }, + "attachedElementGuid" : { + "value" : "53d6da64-8522-45ad-a0e0-affebf607d8d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 0.1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ab450b0e-54fc-474c-a8fb-dd518ccd7b39" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 22.588, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f19f3c7f-63af-4716-81c0-bfc3b846c09b" + }, + "attachedElementGuid" : { + "value" : "0cefdc0b-f47c-4dcf-bab1-8c47c5f6f0bc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f19f3c7f-63af-4716-81c0-bfc3b846c09b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + + ], + "attachedElementGuid" : { + "value" : "f19f3c7f-63af-4716-81c0-bfc3b846c09b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "f19f3c7f-63af-4716-81c0-bfc3b846c09b" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "08587938-9a99-4b7b-962f-ba4e49b05e08" + }, + "attachedElementGuid" : { + "value" : "f19f3c7f-63af-4716-81c0-bfc3b846c09b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "08587938-9a99-4b7b-962f-ba4e49b05e08" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "08587938-9a99-4b7b-962f-ba4e49b05e08" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "08587938-9a99-4b7b-962f-ba4e49b05e08" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "08587938-9a99-4b7b-962f-ba4e49b05e08" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 23.47, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "62aa1163-f00a-4544-bab9-cb263f750b32" + }, + "attachedElementGuid" : { + "value" : "88b99193-3259-4a73-81cb-391f8698662e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "62aa1163-f00a-4544-bab9-cb263f750b32" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + + ], + "attachedElementGuid" : { + "value" : "62aa1163-f00a-4544-bab9-cb263f750b32" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "62aa1163-f00a-4544-bab9-cb263f750b32" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9af46c03-9636-4bc5-9bfb-d09658afcadf" + }, + "attachedElementGuid" : { + "value" : "62aa1163-f00a-4544-bab9-cb263f750b32" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9af46c03-9636-4bc5-9bfb-d09658afcadf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9af46c03-9636-4bc5-9bfb-d09658afcadf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "9af46c03-9636-4bc5-9bfb-d09658afcadf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "9af46c03-9636-4bc5-9bfb-d09658afcadf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 24, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c68a818a-60d1-48bf-8f87-a80b0dcb7478" + }, + "attachedElementGuid" : { + "value" : "0cefdc0b-f47c-4dcf-bab1-8c47c5f6f0bc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c68a818a-60d1-48bf-8f87-a80b0dcb7478" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + + ], + "attachedElementGuid" : { + "value" : "c68a818a-60d1-48bf-8f87-a80b0dcb7478" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "c68a818a-60d1-48bf-8f87-a80b0dcb7478" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cdbe5959-2073-4197-96a9-f658ade1c8e6" + }, + "attachedElementGuid" : { + "value" : "c68a818a-60d1-48bf-8f87-a80b0dcb7478" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "cdbe5959-2073-4197-96a9-f658ade1c8e6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "cdbe5959-2073-4197-96a9-f658ade1c8e6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "cdbe5959-2073-4197-96a9-f658ade1c8e6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "cdbe5959-2073-4197-96a9-f658ade1c8e6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 24.882, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5b946391-e372-4c06-9811-a51fadcee8a8" + }, + "attachedElementGuid" : { + "value" : "3bbf2358-c25e-4d7b-ac86-48e6781f61fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5b946391-e372-4c06-9811-a51fadcee8a8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + + ], + "attachedElementGuid" : { + "value" : "5b946391-e372-4c06-9811-a51fadcee8a8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "5b946391-e372-4c06-9811-a51fadcee8a8" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "34bf8158-e47f-4fad-a27f-8615883ce709" + }, + "attachedElementGuid" : { + "value" : "5b946391-e372-4c06-9811-a51fadcee8a8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "34bf8158-e47f-4fad-a27f-8615883ce709" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "34bf8158-e47f-4fad-a27f-8615883ce709" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "34bf8158-e47f-4fad-a27f-8615883ce709" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "34bf8158-e47f-4fad-a27f-8615883ce709" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 25.411, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3811feeb-1485-4181-ae81-ebf6940a1997" + }, + "attachedElementGuid" : { + "value" : "0cefdc0b-f47c-4dcf-bab1-8c47c5f6f0bc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3811feeb-1485-4181-ae81-ebf6940a1997" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + + ], + "attachedElementGuid" : { + "value" : "3811feeb-1485-4181-ae81-ebf6940a1997" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "3811feeb-1485-4181-ae81-ebf6940a1997" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "18092ecc-70e3-443d-a54f-60b6ec259923" + }, + "attachedElementGuid" : { + "value" : "3811feeb-1485-4181-ae81-ebf6940a1997" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "18092ecc-70e3-443d-a54f-60b6ec259923" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "18092ecc-70e3-443d-a54f-60b6ec259923" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "18092ecc-70e3-443d-a54f-60b6ec259923" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "18092ecc-70e3-443d-a54f-60b6ec259923" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 26.294, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "65e580dd-459a-4d82-91c4-1f985f14fa7d" + }, + "attachedElementGuid" : { + "value" : "88b99193-3259-4a73-81cb-391f8698662e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "65e580dd-459a-4d82-91c4-1f985f14fa7d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + + ], + "attachedElementGuid" : { + "value" : "65e580dd-459a-4d82-91c4-1f985f14fa7d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "65e580dd-459a-4d82-91c4-1f985f14fa7d" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "795a9c58-6ebc-43c2-a509-364809f69b93" + }, + "attachedElementGuid" : { + "value" : "65e580dd-459a-4d82-91c4-1f985f14fa7d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "795a9c58-6ebc-43c2-a509-364809f69b93" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "795a9c58-6ebc-43c2-a509-364809f69b93" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "795a9c58-6ebc-43c2-a509-364809f69b93" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "795a9c58-6ebc-43c2-a509-364809f69b93" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 26.823, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0d17df66-0f3c-4202-b80f-bac428226da0" + }, + "attachedElementGuid" : { + "value" : "0cefdc0b-f47c-4dcf-bab1-8c47c5f6f0bc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0d17df66-0f3c-4202-b80f-bac428226da0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + + ], + "attachedElementGuid" : { + "value" : "0d17df66-0f3c-4202-b80f-bac428226da0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "0d17df66-0f3c-4202-b80f-bac428226da0" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e9b9f3fa-74b6-4b0f-9c0c-13a5bd5a3f91" + }, + "attachedElementGuid" : { + "value" : "0d17df66-0f3c-4202-b80f-bac428226da0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e9b9f3fa-74b6-4b0f-9c0c-13a5bd5a3f91" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e9b9f3fa-74b6-4b0f-9c0c-13a5bd5a3f91" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e9b9f3fa-74b6-4b0f-9c0c-13a5bd5a3f91" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "e9b9f3fa-74b6-4b0f-9c0c-13a5bd5a3f91" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 27.705, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "84c6ea8c-ce1b-401e-b36b-a0e9a6ae3e9a" + }, + "attachedElementGuid" : { + "value" : "8c18ef6a-20ba-49f1-bdda-291982154820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "84c6ea8c-ce1b-401e-b36b-a0e9a6ae3e9a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + + ], + "attachedElementGuid" : { + "value" : "84c6ea8c-ce1b-401e-b36b-a0e9a6ae3e9a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "84c6ea8c-ce1b-401e-b36b-a0e9a6ae3e9a" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "52965377-d387-48f4-a522-94c69a04dbae" + }, + "attachedElementGuid" : { + "value" : "84c6ea8c-ce1b-401e-b36b-a0e9a6ae3e9a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "52965377-d387-48f4-a522-94c69a04dbae" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "52965377-d387-48f4-a522-94c69a04dbae" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "52965377-d387-48f4-a522-94c69a04dbae" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "52965377-d387-48f4-a522-94c69a04dbae" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 28.253, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c292b343-9fce-4a00-9890-b2fb59d686b1" + }, + "attachedElementGuid" : { + "value" : "0cefdc0b-f47c-4dcf-bab1-8c47c5f6f0bc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c292b343-9fce-4a00-9890-b2fb59d686b1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + + ], + "attachedElementGuid" : { + "value" : "c292b343-9fce-4a00-9890-b2fb59d686b1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "c292b343-9fce-4a00-9890-b2fb59d686b1" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6aa55c87-08ca-4bf4-9fd2-30bb5c409493" + }, + "attachedElementGuid" : { + "value" : "c292b343-9fce-4a00-9890-b2fb59d686b1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6aa55c87-08ca-4bf4-9fd2-30bb5c409493" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6aa55c87-08ca-4bf4-9fd2-30bb5c409493" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6aa55c87-08ca-4bf4-9fd2-30bb5c409493" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "6aa55c87-08ca-4bf4-9fd2-30bb5c409493" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 29.117, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c796409b-c01f-49e9-9330-da418bcce74e" + }, + "attachedElementGuid" : { + "value" : "9d002211-bbd3-45c5-a804-9b399aa1d03a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c796409b-c01f-49e9-9330-da418bcce74e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + + ], + "attachedElementGuid" : { + "value" : "c796409b-c01f-49e9-9330-da418bcce74e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "c796409b-c01f-49e9-9330-da418bcce74e" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e07c920a-39f2-4748-b6d0-ac0cec37b6f9" + }, + "attachedElementGuid" : { + "value" : "c796409b-c01f-49e9-9330-da418bcce74e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e07c920a-39f2-4748-b6d0-ac0cec37b6f9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e07c920a-39f2-4748-b6d0-ac0cec37b6f9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e07c920a-39f2-4748-b6d0-ac0cec37b6f9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "e07c920a-39f2-4748-b6d0-ac0cec37b6f9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 29.647, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "48ca8ba9-c87c-4f26-8860-aef03d32b975" + }, + "attachedElementGuid" : { + "value" : "0cefdc0b-f47c-4dcf-bab1-8c47c5f6f0bc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "48ca8ba9-c87c-4f26-8860-aef03d32b975" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + + ], + "attachedElementGuid" : { + "value" : "48ca8ba9-c87c-4f26-8860-aef03d32b975" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "48ca8ba9-c87c-4f26-8860-aef03d32b975" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "608c8ef0-f95d-4f37-975c-cd1485c8dd68" + }, + "attachedElementGuid" : { + "value" : "48ca8ba9-c87c-4f26-8860-aef03d32b975" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "608c8ef0-f95d-4f37-975c-cd1485c8dd68" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "608c8ef0-f95d-4f37-975c-cd1485c8dd68" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "608c8ef0-f95d-4f37-975c-cd1485c8dd68" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "608c8ef0-f95d-4f37-975c-cd1485c8dd68" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 30.529, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8444f4e8-dded-4db6-ac55-8b73b2ff9f52" + }, + "attachedElementGuid" : { + "value" : "8c18ef6a-20ba-49f1-bdda-291982154820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8444f4e8-dded-4db6-ac55-8b73b2ff9f52" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + + ], + "attachedElementGuid" : { + "value" : "8444f4e8-dded-4db6-ac55-8b73b2ff9f52" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "8444f4e8-dded-4db6-ac55-8b73b2ff9f52" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c88feafc-4a6d-49d1-9cd5-afb809e7b879" + }, + "attachedElementGuid" : { + "value" : "8444f4e8-dded-4db6-ac55-8b73b2ff9f52" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c88feafc-4a6d-49d1-9cd5-afb809e7b879" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c88feafc-4a6d-49d1-9cd5-afb809e7b879" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c88feafc-4a6d-49d1-9cd5-afb809e7b879" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "c88feafc-4a6d-49d1-9cd5-afb809e7b879" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 31.058, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "55564093-56aa-485c-9733-28f003f31f06" + }, + "attachedElementGuid" : { + "value" : "0cefdc0b-f47c-4dcf-bab1-8c47c5f6f0bc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "55564093-56aa-485c-9733-28f003f31f06" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + + ], + "attachedElementGuid" : { + "value" : "55564093-56aa-485c-9733-28f003f31f06" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "55564093-56aa-485c-9733-28f003f31f06" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f1a5b109-c752-4ac6-8f3b-5f3119b3827c" + }, + "attachedElementGuid" : { + "value" : "55564093-56aa-485c-9733-28f003f31f06" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f1a5b109-c752-4ac6-8f3b-5f3119b3827c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f1a5b109-c752-4ac6-8f3b-5f3119b3827c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f1a5b109-c752-4ac6-8f3b-5f3119b3827c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "f1a5b109-c752-4ac6-8f3b-5f3119b3827c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 31.941, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "07981cb5-ed94-452d-9ed8-aad173da17f3" + }, + "attachedElementGuid" : { + "value" : "9d002211-bbd3-45c5-a804-9b399aa1d03a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "07981cb5-ed94-452d-9ed8-aad173da17f3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + + ], + "attachedElementGuid" : { + "value" : "07981cb5-ed94-452d-9ed8-aad173da17f3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "07981cb5-ed94-452d-9ed8-aad173da17f3" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6b72da87-462e-4cd4-9be1-84fa5ebb0e02" + }, + "attachedElementGuid" : { + "value" : "07981cb5-ed94-452d-9ed8-aad173da17f3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6b72da87-462e-4cd4-9be1-84fa5ebb0e02" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6b72da87-462e-4cd4-9be1-84fa5ebb0e02" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6b72da87-462e-4cd4-9be1-84fa5ebb0e02" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "6b72da87-462e-4cd4-9be1-84fa5ebb0e02" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 32.47, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e2bbd7e3-5ffe-4a05-97b4-8ced976aa5b6" + }, + "attachedElementGuid" : { + "value" : "0cefdc0b-f47c-4dcf-bab1-8c47c5f6f0bc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e2bbd7e3-5ffe-4a05-97b4-8ced976aa5b6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + + ], + "attachedElementGuid" : { + "value" : "e2bbd7e3-5ffe-4a05-97b4-8ced976aa5b6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "e2bbd7e3-5ffe-4a05-97b4-8ced976aa5b6" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f75607c3-0b81-4955-baec-d36174a7d5fc" + }, + "attachedElementGuid" : { + "value" : "e2bbd7e3-5ffe-4a05-97b4-8ced976aa5b6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f75607c3-0b81-4955-baec-d36174a7d5fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f75607c3-0b81-4955-baec-d36174a7d5fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f75607c3-0b81-4955-baec-d36174a7d5fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "f75607c3-0b81-4955-baec-d36174a7d5fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 33.352, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cb6c3595-7297-4256-825d-1cb2682b2816" + }, + "attachedElementGuid" : { + "value" : "3bbf2358-c25e-4d7b-ac86-48e6781f61fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "cb6c3595-7297-4256-825d-1cb2682b2816" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + + ], + "attachedElementGuid" : { + "value" : "cb6c3595-7297-4256-825d-1cb2682b2816" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "cb6c3595-7297-4256-825d-1cb2682b2816" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ac2ec776-34d8-4bfd-a2b3-2d5530637045" + }, + "attachedElementGuid" : { + "value" : "cb6c3595-7297-4256-825d-1cb2682b2816" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ac2ec776-34d8-4bfd-a2b3-2d5530637045" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ac2ec776-34d8-4bfd-a2b3-2d5530637045" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ac2ec776-34d8-4bfd-a2b3-2d5530637045" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "ac2ec776-34d8-4bfd-a2b3-2d5530637045" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f082b629-efb3-4c48-88ea-58ef33171a5e" + }, + "attachedElementGuid" : { + "value" : "0cefdc0b-f47c-4dcf-bab1-8c47c5f6f0bc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 4, + "z" : 130 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f082b629-efb3-4c48-88ea-58ef33171a5e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f082b629-efb3-4c48-88ea-58ef33171a5e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f082b629-efb3-4c48-88ea-58ef33171a5e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1b8c6c6a-4ce0-44a2-a06c-e704c577b7c5" + }, + "attachedElementGuid" : { + "value" : "0cefdc0b-f47c-4dcf-bab1-8c47c5f6f0bc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -3, + "y" : 7, + "z" : 162 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "1b8c6c6a-4ce0-44a2-a06c-e704c577b7c5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1b8c6c6a-4ce0-44a2-a06c-e704c577b7c5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "1b8c6c6a-4ce0-44a2-a06c-e704c577b7c5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "28103fa6-8e47-4be9-99b6-d159fcf50d2a" + }, + "attachedElementGuid" : { + "value" : "0cefdc0b-f47c-4dcf-bab1-8c47c5f6f0bc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -1, + "y" : 10, + "z" : 195 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "28103fa6-8e47-4be9-99b6-d159fcf50d2a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "28103fa6-8e47-4be9-99b6-d159fcf50d2a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "28103fa6-8e47-4be9-99b6-d159fcf50d2a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ded4c1b3-148f-47a9-ba2c-9f665ada311f" + }, + "attachedElementGuid" : { + "value" : "0cefdc0b-f47c-4dcf-bab1-8c47c5f6f0bc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -6, + "y" : 3, + "z" : 221 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ded4c1b3-148f-47a9-ba2c-9f665ada311f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ded4c1b3-148f-47a9-ba2c-9f665ada311f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ded4c1b3-148f-47a9-ba2c-9f665ada311f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "67ab7f2c-1cd3-4663-a5ec-79269f0c22a7" + }, + "attachedElementGuid" : { + "value" : "0cefdc0b-f47c-4dcf-bab1-8c47c5f6f0bc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 3, + "y" : 3, + "z" : 262 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "67ab7f2c-1cd3-4663-a5ec-79269f0c22a7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "67ab7f2c-1cd3-4663-a5ec-79269f0c22a7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "67ab7f2c-1cd3-4663-a5ec-79269f0c22a7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "16b65f89-b2f5-4c64-b943-bce1290632c3" + }, + "attachedElementGuid" : { + "value" : "0cefdc0b-f47c-4dcf-bab1-8c47c5f6f0bc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2, + "y" : 4, + "z" : 293 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "16b65f89-b2f5-4c64-b943-bce1290632c3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "16b65f89-b2f5-4c64-b943-bce1290632c3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "16b65f89-b2f5-4c64-b943-bce1290632c3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ad754a9a-6efb-439c-ac73-5992913762cc" + }, + "attachedElementGuid" : { + "value" : "0cefdc0b-f47c-4dcf-bab1-8c47c5f6f0bc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 8, + "y" : 3, + "z" : 326 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ad754a9a-6efb-439c-ac73-5992913762cc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ad754a9a-6efb-439c-ac73-5992913762cc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ad754a9a-6efb-439c-ac73-5992913762cc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "17119f99-c52e-499e-844c-589f22ea5bb3" + }, + "attachedElementGuid" : { + "value" : "0cefdc0b-f47c-4dcf-bab1-8c47c5f6f0bc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -1, + "y" : 2, + "z" : 351 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "17119f99-c52e-499e-844c-589f22ea5bb3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "17119f99-c52e-499e-844c-589f22ea5bb3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "17119f99-c52e-499e-844c-589f22ea5bb3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2a69aadc-e2a8-4f4f-8059-e49fbfec1c02" + }, + "attachedElementGuid" : { + "value" : "0cefdc0b-f47c-4dcf-bab1-8c47c5f6f0bc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -4, + "y" : 5, + "z" : 391 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2a69aadc-e2a8-4f4f-8059-e49fbfec1c02" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2a69aadc-e2a8-4f4f-8059-e49fbfec1c02" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "2a69aadc-e2a8-4f4f-8059-e49fbfec1c02" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8ce4c3e0-a5b0-4677-b4ee-9bb8aaf192d5" + }, + "attachedElementGuid" : { + "value" : "0cefdc0b-f47c-4dcf-bab1-8c47c5f6f0bc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 3, + "z" : 426 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8ce4c3e0-a5b0-4677-b4ee-9bb8aaf192d5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8ce4c3e0-a5b0-4677-b4ee-9bb8aaf192d5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8ce4c3e0-a5b0-4677-b4ee-9bb8aaf192d5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a09b463a-9051-4b5b-9f8b-7fcdfa5e60b5" + }, + "attachedElementGuid" : { + "value" : "0cefdc0b-f47c-4dcf-bab1-8c47c5f6f0bc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a09b463a-9051-4b5b-9f8b-7fcdfa5e60b5" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 22.235 + },{ + "value" : false, + "time" : 35.294 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "407046ca-d5ea-42f4-b03e-b97c56b1a8e5" + }, + "attachedElementGuid" : { + "value" : "a09b463a-9051-4b5b-9f8b-7fcdfa5e60b5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "407046ca-d5ea-42f4-b03e-b97c56b1a8e5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "407046ca-d5ea-42f4-b03e-b97c56b1a8e5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "407046ca-d5ea-42f4-b03e-b97c56b1a8e5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Displacement_BM,Assembly-CSharp", + "positionX" : { + "animatedFloatList" : [ + + ] + }, + "positionY" : { + "animatedFloatList" : [ + + ] + }, + "positionZ" : { + "animatedFloatList" : [ + + ] + }, + "elementName" : "New Displacement", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0e2f236c-bdba-4fdd-855b-b6f9685a0ab1" + }, + "attachedElementGuid" : { + "value" : "407046ca-d5ea-42f4-b03e-b97c56b1a8e5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0e2f236c-bdba-4fdd-855b-b6f9685a0ab1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3b91f2f4-c50e-42c1-b743-d2abac84ab16" + }, + "attachedElementGuid" : { + "value" : "88b99193-3259-4a73-81cb-391f8698662e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -3, + "y" : 4, + "z" : 130 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3b91f2f4-c50e-42c1-b743-d2abac84ab16" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3b91f2f4-c50e-42c1-b743-d2abac84ab16" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3b91f2f4-c50e-42c1-b743-d2abac84ab16" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bba085e8-d894-431c-bbd0-147e6872b09c" + }, + "attachedElementGuid" : { + "value" : "88b99193-3259-4a73-81cb-391f8698662e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -6, + "y" : 2, + "z" : 162 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "bba085e8-d894-431c-bbd0-147e6872b09c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bba085e8-d894-431c-bbd0-147e6872b09c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "bba085e8-d894-431c-bbd0-147e6872b09c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a470ba9b-0255-43a9-811f-0d950edf6a1e" + }, + "attachedElementGuid" : { + "value" : "88b99193-3259-4a73-81cb-391f8698662e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 8, + "y" : 5, + "z" : 195 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a470ba9b-0255-43a9-811f-0d950edf6a1e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a470ba9b-0255-43a9-811f-0d950edf6a1e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a470ba9b-0255-43a9-811f-0d950edf6a1e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "26bc9875-8ed5-4c5a-a654-9ca8203c3fe2" + }, + "attachedElementGuid" : { + "value" : "88b99193-3259-4a73-81cb-391f8698662e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 8, + "z" : 221 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "26bc9875-8ed5-4c5a-a654-9ca8203c3fe2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "26bc9875-8ed5-4c5a-a654-9ca8203c3fe2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "26bc9875-8ed5-4c5a-a654-9ca8203c3fe2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7e6e9bf3-27a3-424d-a186-7307b3749cc4" + }, + "attachedElementGuid" : { + "value" : "88b99193-3259-4a73-81cb-391f8698662e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 3, + "y" : 8, + "z" : 262 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7e6e9bf3-27a3-424d-a186-7307b3749cc4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7e6e9bf3-27a3-424d-a186-7307b3749cc4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "7e6e9bf3-27a3-424d-a186-7307b3749cc4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "49c00579-9459-4019-955c-d3969c177c0f" + }, + "attachedElementGuid" : { + "value" : "88b99193-3259-4a73-81cb-391f8698662e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 6, + "z" : 293 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "49c00579-9459-4019-955c-d3969c177c0f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "49c00579-9459-4019-955c-d3969c177c0f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "49c00579-9459-4019-955c-d3969c177c0f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fa851bf5-b3d8-40ae-b1de-b46415892c6d" + }, + "attachedElementGuid" : { + "value" : "88b99193-3259-4a73-81cb-391f8698662e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 3, + "z" : 326 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "fa851bf5-b3d8-40ae-b1de-b46415892c6d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fa851bf5-b3d8-40ae-b1de-b46415892c6d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "fa851bf5-b3d8-40ae-b1de-b46415892c6d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "00f886fb-56a1-4e79-b4f0-2b960823a0dd" + }, + "attachedElementGuid" : { + "value" : "88b99193-3259-4a73-81cb-391f8698662e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 3, + "y" : 5, + "z" : 351 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "00f886fb-56a1-4e79-b4f0-2b960823a0dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "00f886fb-56a1-4e79-b4f0-2b960823a0dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "00f886fb-56a1-4e79-b4f0-2b960823a0dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "84ce144d-28bb-4a43-b47c-92e414b4ef44" + }, + "attachedElementGuid" : { + "value" : "88b99193-3259-4a73-81cb-391f8698662e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 8, + "y" : 3, + "z" : 391 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "84ce144d-28bb-4a43-b47c-92e414b4ef44" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "84ce144d-28bb-4a43-b47c-92e414b4ef44" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "84ce144d-28bb-4a43-b47c-92e414b4ef44" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7a79b0dc-a625-4f19-bd5c-5822f088d31e" + }, + "attachedElementGuid" : { + "value" : "88b99193-3259-4a73-81cb-391f8698662e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 3, + "y" : 3, + "z" : 426 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7a79b0dc-a625-4f19-bd5c-5822f088d31e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7a79b0dc-a625-4f19-bd5c-5822f088d31e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "7a79b0dc-a625-4f19-bd5c-5822f088d31e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "20a0c155-5af0-456f-8db3-ddbc9ddd9ee9" + }, + "attachedElementGuid" : { + "value" : "88b99193-3259-4a73-81cb-391f8698662e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "20a0c155-5af0-456f-8db3-ddbc9ddd9ee9" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 22.235 + },{ + "value" : false, + "time" : 35.294 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "dd9f80c1-6d31-40ea-85a0-64bf5bb82d31" + }, + "attachedElementGuid" : { + "value" : "20a0c155-5af0-456f-8db3-ddbc9ddd9ee9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "dd9f80c1-6d31-40ea-85a0-64bf5bb82d31" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "dd9f80c1-6d31-40ea-85a0-64bf5bb82d31" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "dd9f80c1-6d31-40ea-85a0-64bf5bb82d31" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Displacement_BM,Assembly-CSharp", + "positionX" : { + "animatedFloatList" : [ + + ] + }, + "positionY" : { + "animatedFloatList" : [ + + ] + }, + "positionZ" : { + "animatedFloatList" : [ + + ] + }, + "elementName" : "New Displacement", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2a894a4e-0a92-4d49-8e74-6a313a657731" + }, + "attachedElementGuid" : { + "value" : "dd9f80c1-6d31-40ea-85a0-64bf5bb82d31" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2a894a4e-0a92-4d49-8e74-6a313a657731" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c6e293ab-3df4-437e-9e9f-fb5bfe3c0af3" + }, + "attachedElementGuid" : { + "value" : "8c18ef6a-20ba-49f1-bdda-291982154820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2, + "y" : 7, + "z" : 130 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c6e293ab-3df4-437e-9e9f-fb5bfe3c0af3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c6e293ab-3df4-437e-9e9f-fb5bfe3c0af3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c6e293ab-3df4-437e-9e9f-fb5bfe3c0af3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "47a90eda-45d6-4e4a-a372-d3a099239247" + }, + "attachedElementGuid" : { + "value" : "8c18ef6a-20ba-49f1-bdda-291982154820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 8, + "y" : 10, + "z" : 162 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "47a90eda-45d6-4e4a-a372-d3a099239247" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "47a90eda-45d6-4e4a-a372-d3a099239247" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "47a90eda-45d6-4e4a-a372-d3a099239247" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1de1aeed-1333-472e-8217-57ee704ca294" + }, + "attachedElementGuid" : { + "value" : "8c18ef6a-20ba-49f1-bdda-291982154820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 6, + "y" : 17, + "z" : 195 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "1de1aeed-1333-472e-8217-57ee704ca294" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1de1aeed-1333-472e-8217-57ee704ca294" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "1de1aeed-1333-472e-8217-57ee704ca294" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "748c2e78-966b-4e6e-99f4-af828a09a14d" + }, + "attachedElementGuid" : { + "value" : "8c18ef6a-20ba-49f1-bdda-291982154820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -12, + "y" : 10, + "z" : 221 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "748c2e78-966b-4e6e-99f4-af828a09a14d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "748c2e78-966b-4e6e-99f4-af828a09a14d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "748c2e78-966b-4e6e-99f4-af828a09a14d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "88a4041d-f540-4844-b284-110dbddb54a4" + }, + "attachedElementGuid" : { + "value" : "8c18ef6a-20ba-49f1-bdda-291982154820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -2, + "y" : 2, + "z" : 262 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "88a4041d-f540-4844-b284-110dbddb54a4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "88a4041d-f540-4844-b284-110dbddb54a4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "88a4041d-f540-4844-b284-110dbddb54a4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "126789ad-d09a-4b34-be06-551f7e6e1c01" + }, + "attachedElementGuid" : { + "value" : "8c18ef6a-20ba-49f1-bdda-291982154820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 6, + "z" : 293 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "126789ad-d09a-4b34-be06-551f7e6e1c01" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "126789ad-d09a-4b34-be06-551f7e6e1c01" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "126789ad-d09a-4b34-be06-551f7e6e1c01" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "23a8eae7-0c85-48dc-a695-8e932525225b" + }, + "attachedElementGuid" : { + "value" : "8c18ef6a-20ba-49f1-bdda-291982154820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 3, + "z" : 326 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "23a8eae7-0c85-48dc-a695-8e932525225b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "23a8eae7-0c85-48dc-a695-8e932525225b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "23a8eae7-0c85-48dc-a695-8e932525225b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a9cfa6ad-4433-4b8e-ac27-9541df1c90ec" + }, + "attachedElementGuid" : { + "value" : "8c18ef6a-20ba-49f1-bdda-291982154820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -3, + "y" : 8, + "z" : 351 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a9cfa6ad-4433-4b8e-ac27-9541df1c90ec" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a9cfa6ad-4433-4b8e-ac27-9541df1c90ec" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a9cfa6ad-4433-4b8e-ac27-9541df1c90ec" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "620012d3-0893-434f-9a6e-3a93a1909386" + }, + "attachedElementGuid" : { + "value" : "8c18ef6a-20ba-49f1-bdda-291982154820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 8, + "y" : 3, + "z" : 391 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "620012d3-0893-434f-9a6e-3a93a1909386" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "620012d3-0893-434f-9a6e-3a93a1909386" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "620012d3-0893-434f-9a6e-3a93a1909386" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0f4c28f2-228d-4e24-98bb-4c6112d706f2" + }, + "attachedElementGuid" : { + "value" : "8c18ef6a-20ba-49f1-bdda-291982154820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 6, + "y" : 3, + "z" : 426 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0f4c28f2-228d-4e24-98bb-4c6112d706f2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0f4c28f2-228d-4e24-98bb-4c6112d706f2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0f4c28f2-228d-4e24-98bb-4c6112d706f2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "795f0c18-ae1f-4af8-9f55-88c1021e7b8c" + }, + "attachedElementGuid" : { + "value" : "8c18ef6a-20ba-49f1-bdda-291982154820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "795f0c18-ae1f-4af8-9f55-88c1021e7b8c" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 22.235 + },{ + "value" : false, + "time" : 35.294 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d536641e-55c3-4b89-8de5-8345e6df340d" + }, + "attachedElementGuid" : { + "value" : "795f0c18-ae1f-4af8-9f55-88c1021e7b8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d536641e-55c3-4b89-8de5-8345e6df340d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d536641e-55c3-4b89-8de5-8345e6df340d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "d536641e-55c3-4b89-8de5-8345e6df340d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Displacement_BM,Assembly-CSharp", + "positionX" : { + "animatedFloatList" : [ + + ] + }, + "positionY" : { + "animatedFloatList" : [ + + ] + }, + "positionZ" : { + "animatedFloatList" : [ + + ] + }, + "elementName" : "New Displacement", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9c554bfa-008c-4f94-8b5c-a53d2e865b5d" + }, + "attachedElementGuid" : { + "value" : "d536641e-55c3-4b89-8de5-8345e6df340d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9c554bfa-008c-4f94-8b5c-a53d2e865b5d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9f8209f4-71bc-430e-ab94-2d3192b07571" + }, + "attachedElementGuid" : { + "value" : "3bbf2358-c25e-4d7b-ac86-48e6781f61fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 6, + "y" : 2, + "z" : 130 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9f8209f4-71bc-430e-ab94-2d3192b07571" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9f8209f4-71bc-430e-ab94-2d3192b07571" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "9f8209f4-71bc-430e-ab94-2d3192b07571" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "21b8147c-f604-4e05-98ab-b67610a434a4" + }, + "attachedElementGuid" : { + "value" : "3bbf2358-c25e-4d7b-ac86-48e6781f61fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -4, + "y" : 12, + "z" : 162 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "21b8147c-f604-4e05-98ab-b67610a434a4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "21b8147c-f604-4e05-98ab-b67610a434a4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "21b8147c-f604-4e05-98ab-b67610a434a4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3353fc40-44b9-4db9-aa63-aa9eab44ae3b" + }, + "attachedElementGuid" : { + "value" : "3bbf2358-c25e-4d7b-ac86-48e6781f61fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -8, + "y" : 6, + "z" : 195 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3353fc40-44b9-4db9-aa63-aa9eab44ae3b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3353fc40-44b9-4db9-aa63-aa9eab44ae3b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3353fc40-44b9-4db9-aa63-aa9eab44ae3b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e8776aa1-cd7f-4c46-825b-f09722f2d2d1" + }, + "attachedElementGuid" : { + "value" : "3bbf2358-c25e-4d7b-ac86-48e6781f61fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 4, + "y" : 2, + "z" : 221 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e8776aa1-cd7f-4c46-825b-f09722f2d2d1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e8776aa1-cd7f-4c46-825b-f09722f2d2d1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e8776aa1-cd7f-4c46-825b-f09722f2d2d1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ce3ef905-7b36-446c-b4b6-d8596aab52df" + }, + "attachedElementGuid" : { + "value" : "3bbf2358-c25e-4d7b-ac86-48e6781f61fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 4, + "y" : 5, + "z" : 262 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ce3ef905-7b36-446c-b4b6-d8596aab52df" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ce3ef905-7b36-446c-b4b6-d8596aab52df" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ce3ef905-7b36-446c-b4b6-d8596aab52df" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4e3f14f8-8739-4580-85ac-a1225ece53b9" + }, + "attachedElementGuid" : { + "value" : "3bbf2358-c25e-4d7b-ac86-48e6781f61fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 10, + "z" : 293 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4e3f14f8-8739-4580-85ac-a1225ece53b9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4e3f14f8-8739-4580-85ac-a1225ece53b9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4e3f14f8-8739-4580-85ac-a1225ece53b9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b88d9c3a-4a3e-4b6d-9963-6c19f90cbd83" + }, + "attachedElementGuid" : { + "value" : "3bbf2358-c25e-4d7b-ac86-48e6781f61fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 3, + "z" : 326 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b88d9c3a-4a3e-4b6d-9963-6c19f90cbd83" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b88d9c3a-4a3e-4b6d-9963-6c19f90cbd83" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b88d9c3a-4a3e-4b6d-9963-6c19f90cbd83" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "21594901-895f-4581-8528-b6506bf1a203" + }, + "attachedElementGuid" : { + "value" : "3bbf2358-c25e-4d7b-ac86-48e6781f61fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -6, + "y" : 9, + "z" : 351 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "21594901-895f-4581-8528-b6506bf1a203" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "21594901-895f-4581-8528-b6506bf1a203" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "21594901-895f-4581-8528-b6506bf1a203" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "beff94cf-997c-4fe6-a2ee-8a3258ca8d08" + }, + "attachedElementGuid" : { + "value" : "3bbf2358-c25e-4d7b-ac86-48e6781f61fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -3, + "y" : 9, + "z" : 391 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "beff94cf-997c-4fe6-a2ee-8a3258ca8d08" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "beff94cf-997c-4fe6-a2ee-8a3258ca8d08" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "beff94cf-997c-4fe6-a2ee-8a3258ca8d08" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "89f992cd-a61f-4b00-afd7-1fd173eec3c4" + }, + "attachedElementGuid" : { + "value" : "3bbf2358-c25e-4d7b-ac86-48e6781f61fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -3, + "y" : 3, + "z" : 426 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "89f992cd-a61f-4b00-afd7-1fd173eec3c4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "89f992cd-a61f-4b00-afd7-1fd173eec3c4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "89f992cd-a61f-4b00-afd7-1fd173eec3c4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "473dd33d-fa17-4c37-9088-2315c5b70a28" + }, + "attachedElementGuid" : { + "value" : "3bbf2358-c25e-4d7b-ac86-48e6781f61fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "473dd33d-fa17-4c37-9088-2315c5b70a28" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 22.235 + },{ + "value" : false, + "time" : 35.294 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cdc05b73-f785-4b23-aaf3-3de3ce7ea97e" + }, + "attachedElementGuid" : { + "value" : "473dd33d-fa17-4c37-9088-2315c5b70a28" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "cdc05b73-f785-4b23-aaf3-3de3ce7ea97e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "cdc05b73-f785-4b23-aaf3-3de3ce7ea97e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0.5, + "g" : 1, + "b" : 0.5, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "cdc05b73-f785-4b23-aaf3-3de3ce7ea97e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Displacement_BM,Assembly-CSharp", + "positionX" : { + "animatedFloatList" : [ + + ] + }, + "positionY" : { + "animatedFloatList" : [ + + ] + }, + "positionZ" : { + "animatedFloatList" : [ + + ] + }, + "elementName" : "New Displacement", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d4396bbb-f6c3-474d-9379-669cd0535764" + }, + "attachedElementGuid" : { + "value" : "cdc05b73-f785-4b23-aaf3-3de3ce7ea97e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d4396bbb-f6c3-474d-9379-669cd0535764" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e0790bb8-9b08-48f0-b317-5316b96f2949" + }, + "attachedElementGuid" : { + "value" : "9d002211-bbd3-45c5-a804-9b399aa1d03a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -10, + "y" : 20, + "z" : 130 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e0790bb8-9b08-48f0-b317-5316b96f2949" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e0790bb8-9b08-48f0-b317-5316b96f2949" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e0790bb8-9b08-48f0-b317-5316b96f2949" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "43409e66-56af-4b41-9086-cd8db0c57162" + }, + "attachedElementGuid" : { + "value" : "9d002211-bbd3-45c5-a804-9b399aa1d03a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 8, + "y" : 6, + "z" : 162 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "43409e66-56af-4b41-9086-cd8db0c57162" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "43409e66-56af-4b41-9086-cd8db0c57162" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "43409e66-56af-4b41-9086-cd8db0c57162" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0744a4ec-2fe5-4895-a985-6aa7f72a8a3c" + }, + "attachedElementGuid" : { + "value" : "9d002211-bbd3-45c5-a804-9b399aa1d03a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -8, + "y" : 6, + "z" : 195 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0744a4ec-2fe5-4895-a985-6aa7f72a8a3c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0744a4ec-2fe5-4895-a985-6aa7f72a8a3c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0744a4ec-2fe5-4895-a985-6aa7f72a8a3c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8defef99-db45-4723-b167-ab1c3df9cdfb" + }, + "attachedElementGuid" : { + "value" : "9d002211-bbd3-45c5-a804-9b399aa1d03a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 4, + "y" : 10, + "z" : 221 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8defef99-db45-4723-b167-ab1c3df9cdfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8defef99-db45-4723-b167-ab1c3df9cdfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8defef99-db45-4723-b167-ab1c3df9cdfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d4171023-3567-4db0-8600-a50f8de79589" + }, + "attachedElementGuid" : { + "value" : "9d002211-bbd3-45c5-a804-9b399aa1d03a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 4, + "y" : 3, + "z" : 262 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d4171023-3567-4db0-8600-a50f8de79589" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d4171023-3567-4db0-8600-a50f8de79589" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d4171023-3567-4db0-8600-a50f8de79589" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c3dba408-2db2-4b7b-96dc-73ea0b03b4bb" + }, + "attachedElementGuid" : { + "value" : "9d002211-bbd3-45c5-a804-9b399aa1d03a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -10, + "y" : 10, + "z" : 293 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c3dba408-2db2-4b7b-96dc-73ea0b03b4bb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c3dba408-2db2-4b7b-96dc-73ea0b03b4bb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c3dba408-2db2-4b7b-96dc-73ea0b03b4bb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3530ce0a-4fe9-44ed-b450-be72c6f9c288" + }, + "attachedElementGuid" : { + "value" : "9d002211-bbd3-45c5-a804-9b399aa1d03a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 3, + "z" : 326 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3530ce0a-4fe9-44ed-b450-be72c6f9c288" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3530ce0a-4fe9-44ed-b450-be72c6f9c288" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3530ce0a-4fe9-44ed-b450-be72c6f9c288" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "edcf0550-bd55-4be0-9563-68c0d4ce1bed" + }, + "attachedElementGuid" : { + "value" : "9d002211-bbd3-45c5-a804-9b399aa1d03a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -9, + "y" : 3, + "z" : 351 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "edcf0550-bd55-4be0-9563-68c0d4ce1bed" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "edcf0550-bd55-4be0-9563-68c0d4ce1bed" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "edcf0550-bd55-4be0-9563-68c0d4ce1bed" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b2760ce4-9b5e-4337-9a16-edb56485a473" + }, + "attachedElementGuid" : { + "value" : "9d002211-bbd3-45c5-a804-9b399aa1d03a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -3, + "y" : 9, + "z" : 391 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b2760ce4-9b5e-4337-9a16-edb56485a473" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b2760ce4-9b5e-4337-9a16-edb56485a473" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b2760ce4-9b5e-4337-9a16-edb56485a473" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3509aa01-9d57-44c0-bea5-0c50146498c2" + }, + "attachedElementGuid" : { + "value" : "9d002211-bbd3-45c5-a804-9b399aa1d03a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -6, + "y" : 3, + "z" : 426 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3509aa01-9d57-44c0-bea5-0c50146498c2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3509aa01-9d57-44c0-bea5-0c50146498c2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3509aa01-9d57-44c0-bea5-0c50146498c2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "01a7a198-6bd9-4fb0-902f-532727ea11bc" + }, + "attachedElementGuid" : { + "value" : "9d002211-bbd3-45c5-a804-9b399aa1d03a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "01a7a198-6bd9-4fb0-902f-532727ea11bc" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 22.235 + },{ + "value" : false, + "time" : 35.294 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "030631b3-2983-4187-a1db-0d54ea19ae90" + }, + "attachedElementGuid" : { + "value" : "01a7a198-6bd9-4fb0-902f-532727ea11bc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -0.3, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "030631b3-2983-4187-a1db-0d54ea19ae90" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "030631b3-2983-4187-a1db-0d54ea19ae90" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0.5, + "g" : 1, + "b" : 0.5, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "030631b3-2983-4187-a1db-0d54ea19ae90" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Displacement_BM,Assembly-CSharp", + "positionX" : { + "animatedFloatList" : [ + + ] + }, + "positionY" : { + "animatedFloatList" : [ + + ] + }, + "positionZ" : { + "animatedFloatList" : [ + + ] + }, + "elementName" : "New Displacement", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c2e1c989-bf14-4c55-a82c-19bb2defa96e" + }, + "attachedElementGuid" : { + "value" : "030631b3-2983-4187-a1db-0d54ea19ae90" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c2e1c989-bf14-4c55-a82c-19bb2defa96e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 22.764, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1e6daf2a-2834-4318-a5f1-7a5e99efaf3e" + }, + "attachedElementGuid" : { + "value" : "88b99193-3259-4a73-81cb-391f8698662e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1e6daf2a-2834-4318-a5f1-7a5e99efaf3e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "1e6daf2a-2834-4318-a5f1-7a5e99efaf3e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "1e6daf2a-2834-4318-a5f1-7a5e99efaf3e" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "aecba2b4-9875-4d58-80a4-8e9c39b224eb" + }, + "attachedElementGuid" : { + "value" : "1e6daf2a-2834-4318-a5f1-7a5e99efaf3e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "aecba2b4-9875-4d58-80a4-8e9c39b224eb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "aecba2b4-9875-4d58-80a4-8e9c39b224eb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "aecba2b4-9875-4d58-80a4-8e9c39b224eb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "aecba2b4-9875-4d58-80a4-8e9c39b224eb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 22.941, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cb81b528-7a00-4bd4-a2b0-a163c0718d91" + }, + "attachedElementGuid" : { + "value" : "8c18ef6a-20ba-49f1-bdda-291982154820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "cb81b528-7a00-4bd4-a2b0-a163c0718d91" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "cb81b528-7a00-4bd4-a2b0-a163c0718d91" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "cb81b528-7a00-4bd4-a2b0-a163c0718d91" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e46be408-5981-4752-97ad-f067c185dfc1" + }, + "attachedElementGuid" : { + "value" : "cb81b528-7a00-4bd4-a2b0-a163c0718d91" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e46be408-5981-4752-97ad-f067c185dfc1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e46be408-5981-4752-97ad-f067c185dfc1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e46be408-5981-4752-97ad-f067c185dfc1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "e46be408-5981-4752-97ad-f067c185dfc1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 23.647, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e38f0f98-ef88-48b1-b912-e111608b4fc2" + }, + "attachedElementGuid" : { + "value" : "8c18ef6a-20ba-49f1-bdda-291982154820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e38f0f98-ef88-48b1-b912-e111608b4fc2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "e38f0f98-ef88-48b1-b912-e111608b4fc2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "e38f0f98-ef88-48b1-b912-e111608b4fc2" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "864e13b8-287b-4756-a3bf-320b817dcb8d" + }, + "attachedElementGuid" : { + "value" : "e38f0f98-ef88-48b1-b912-e111608b4fc2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "864e13b8-287b-4756-a3bf-320b817dcb8d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "864e13b8-287b-4756-a3bf-320b817dcb8d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "864e13b8-287b-4756-a3bf-320b817dcb8d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "864e13b8-287b-4756-a3bf-320b817dcb8d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 24.176, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "dfb8e5c4-51e3-4135-89ed-50dc4892f9b5" + }, + "attachedElementGuid" : { + "value" : "3bbf2358-c25e-4d7b-ac86-48e6781f61fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "dfb8e5c4-51e3-4135-89ed-50dc4892f9b5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "dfb8e5c4-51e3-4135-89ed-50dc4892f9b5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "dfb8e5c4-51e3-4135-89ed-50dc4892f9b5" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "59e052aa-7ae6-469e-a94b-7ebaddfbc4d1" + }, + "attachedElementGuid" : { + "value" : "dfb8e5c4-51e3-4135-89ed-50dc4892f9b5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "59e052aa-7ae6-469e-a94b-7ebaddfbc4d1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "59e052aa-7ae6-469e-a94b-7ebaddfbc4d1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "59e052aa-7ae6-469e-a94b-7ebaddfbc4d1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "59e052aa-7ae6-469e-a94b-7ebaddfbc4d1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 24.352, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "db002c08-0bbe-42be-a14d-cff541e54dfe" + }, + "attachedElementGuid" : { + "value" : "9d002211-bbd3-45c5-a804-9b399aa1d03a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "db002c08-0bbe-42be-a14d-cff541e54dfe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "db002c08-0bbe-42be-a14d-cff541e54dfe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "db002c08-0bbe-42be-a14d-cff541e54dfe" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6d22ce0a-6fb6-47ca-bc85-38ebbbd92ee5" + }, + "attachedElementGuid" : { + "value" : "db002c08-0bbe-42be-a14d-cff541e54dfe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6d22ce0a-6fb6-47ca-bc85-38ebbbd92ee5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6d22ce0a-6fb6-47ca-bc85-38ebbbd92ee5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6d22ce0a-6fb6-47ca-bc85-38ebbbd92ee5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "6d22ce0a-6fb6-47ca-bc85-38ebbbd92ee5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 25.058, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3a552525-fa8f-4937-aa27-2def78143015" + }, + "attachedElementGuid" : { + "value" : "9d002211-bbd3-45c5-a804-9b399aa1d03a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3a552525-fa8f-4937-aa27-2def78143015" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "3a552525-fa8f-4937-aa27-2def78143015" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "3a552525-fa8f-4937-aa27-2def78143015" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a2fe7c0e-8612-4a2f-b517-1d46cbf749a8" + }, + "attachedElementGuid" : { + "value" : "3a552525-fa8f-4937-aa27-2def78143015" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a2fe7c0e-8612-4a2f-b517-1d46cbf749a8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a2fe7c0e-8612-4a2f-b517-1d46cbf749a8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a2fe7c0e-8612-4a2f-b517-1d46cbf749a8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "a2fe7c0e-8612-4a2f-b517-1d46cbf749a8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 25.588, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c5733062-0bef-4792-aaf4-01c3b6b24ea8" + }, + "attachedElementGuid" : { + "value" : "88b99193-3259-4a73-81cb-391f8698662e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c5733062-0bef-4792-aaf4-01c3b6b24ea8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "c5733062-0bef-4792-aaf4-01c3b6b24ea8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "c5733062-0bef-4792-aaf4-01c3b6b24ea8" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0b1cc272-135c-4bda-b082-b8ecf26601af" + }, + "attachedElementGuid" : { + "value" : "c5733062-0bef-4792-aaf4-01c3b6b24ea8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0b1cc272-135c-4bda-b082-b8ecf26601af" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0b1cc272-135c-4bda-b082-b8ecf26601af" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0b1cc272-135c-4bda-b082-b8ecf26601af" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "0b1cc272-135c-4bda-b082-b8ecf26601af" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 25.764, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "993f19be-7518-44dd-847c-25afe0c5f5c4" + }, + "attachedElementGuid" : { + "value" : "3bbf2358-c25e-4d7b-ac86-48e6781f61fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "993f19be-7518-44dd-847c-25afe0c5f5c4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "993f19be-7518-44dd-847c-25afe0c5f5c4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "993f19be-7518-44dd-847c-25afe0c5f5c4" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "07b190d4-8f21-4751-a50c-4c59d114c71a" + }, + "attachedElementGuid" : { + "value" : "993f19be-7518-44dd-847c-25afe0c5f5c4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "07b190d4-8f21-4751-a50c-4c59d114c71a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "07b190d4-8f21-4751-a50c-4c59d114c71a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "07b190d4-8f21-4751-a50c-4c59d114c71a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "07b190d4-8f21-4751-a50c-4c59d114c71a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 26.47, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "38992373-9635-4ce8-a566-9cf66f5a93a2" + }, + "attachedElementGuid" : { + "value" : "3bbf2358-c25e-4d7b-ac86-48e6781f61fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "38992373-9635-4ce8-a566-9cf66f5a93a2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "38992373-9635-4ce8-a566-9cf66f5a93a2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "38992373-9635-4ce8-a566-9cf66f5a93a2" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "02d9dc3a-266c-4e43-a18d-8e6cf5b2e0cc" + }, + "attachedElementGuid" : { + "value" : "38992373-9635-4ce8-a566-9cf66f5a93a2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "02d9dc3a-266c-4e43-a18d-8e6cf5b2e0cc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "02d9dc3a-266c-4e43-a18d-8e6cf5b2e0cc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "02d9dc3a-266c-4e43-a18d-8e6cf5b2e0cc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "02d9dc3a-266c-4e43-a18d-8e6cf5b2e0cc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 27, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b4a646d1-7c35-472c-9009-e591d169cf9d" + }, + "attachedElementGuid" : { + "value" : "8c18ef6a-20ba-49f1-bdda-291982154820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b4a646d1-7c35-472c-9009-e591d169cf9d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "b4a646d1-7c35-472c-9009-e591d169cf9d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "b4a646d1-7c35-472c-9009-e591d169cf9d" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7c982281-d0c8-4844-b9b2-27d79d62d950" + }, + "attachedElementGuid" : { + "value" : "b4a646d1-7c35-472c-9009-e591d169cf9d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7c982281-d0c8-4844-b9b2-27d79d62d950" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7c982281-d0c8-4844-b9b2-27d79d62d950" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "7c982281-d0c8-4844-b9b2-27d79d62d950" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "7c982281-d0c8-4844-b9b2-27d79d62d950" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 27.176, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0a568831-6ba2-4dae-b4f1-1fbb5d5053dc" + }, + "attachedElementGuid" : { + "value" : "9d002211-bbd3-45c5-a804-9b399aa1d03a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0a568831-6ba2-4dae-b4f1-1fbb5d5053dc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "0a568831-6ba2-4dae-b4f1-1fbb5d5053dc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "0a568831-6ba2-4dae-b4f1-1fbb5d5053dc" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "709c30c1-0fc5-43a4-b331-446668cd4a81" + }, + "attachedElementGuid" : { + "value" : "0a568831-6ba2-4dae-b4f1-1fbb5d5053dc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "709c30c1-0fc5-43a4-b331-446668cd4a81" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "709c30c1-0fc5-43a4-b331-446668cd4a81" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "709c30c1-0fc5-43a4-b331-446668cd4a81" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "709c30c1-0fc5-43a4-b331-446668cd4a81" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 27.882, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "13dd182b-fdbe-4de9-8612-f068773223be" + }, + "attachedElementGuid" : { + "value" : "9d002211-bbd3-45c5-a804-9b399aa1d03a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "13dd182b-fdbe-4de9-8612-f068773223be" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "13dd182b-fdbe-4de9-8612-f068773223be" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "13dd182b-fdbe-4de9-8612-f068773223be" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "912ef863-15e4-4cf3-b6c8-32f057993be5" + }, + "attachedElementGuid" : { + "value" : "13dd182b-fdbe-4de9-8612-f068773223be" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "912ef863-15e4-4cf3-b6c8-32f057993be5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "912ef863-15e4-4cf3-b6c8-32f057993be5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "912ef863-15e4-4cf3-b6c8-32f057993be5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "912ef863-15e4-4cf3-b6c8-32f057993be5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 28.411, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "229056f4-11f5-42fc-8f39-647d7452c421" + }, + "attachedElementGuid" : { + "value" : "9d002211-bbd3-45c5-a804-9b399aa1d03a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "229056f4-11f5-42fc-8f39-647d7452c421" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "229056f4-11f5-42fc-8f39-647d7452c421" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "229056f4-11f5-42fc-8f39-647d7452c421" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "197d7f7d-fceb-4443-aaae-06601c33c715" + }, + "attachedElementGuid" : { + "value" : "229056f4-11f5-42fc-8f39-647d7452c421" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "197d7f7d-fceb-4443-aaae-06601c33c715" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "197d7f7d-fceb-4443-aaae-06601c33c715" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "197d7f7d-fceb-4443-aaae-06601c33c715" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "197d7f7d-fceb-4443-aaae-06601c33c715" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 28.588, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "513a578a-8ee7-426c-bfd4-718aaf85e949" + }, + "attachedElementGuid" : { + "value" : "3bbf2358-c25e-4d7b-ac86-48e6781f61fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "513a578a-8ee7-426c-bfd4-718aaf85e949" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "513a578a-8ee7-426c-bfd4-718aaf85e949" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "513a578a-8ee7-426c-bfd4-718aaf85e949" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b50c9a05-634b-4d81-99d9-9631c2d7e337" + }, + "attachedElementGuid" : { + "value" : "513a578a-8ee7-426c-bfd4-718aaf85e949" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b50c9a05-634b-4d81-99d9-9631c2d7e337" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b50c9a05-634b-4d81-99d9-9631c2d7e337" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b50c9a05-634b-4d81-99d9-9631c2d7e337" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "b50c9a05-634b-4d81-99d9-9631c2d7e337" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 29.294, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "43727ed4-79b1-4699-8e94-01b88360ec33" + }, + "attachedElementGuid" : { + "value" : "3bbf2358-c25e-4d7b-ac86-48e6781f61fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "43727ed4-79b1-4699-8e94-01b88360ec33" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "43727ed4-79b1-4699-8e94-01b88360ec33" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "43727ed4-79b1-4699-8e94-01b88360ec33" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c7360bc3-414a-44ad-aefb-3f8cee99efc9" + }, + "attachedElementGuid" : { + "value" : "43727ed4-79b1-4699-8e94-01b88360ec33" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c7360bc3-414a-44ad-aefb-3f8cee99efc9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c7360bc3-414a-44ad-aefb-3f8cee99efc9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c7360bc3-414a-44ad-aefb-3f8cee99efc9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "c7360bc3-414a-44ad-aefb-3f8cee99efc9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 29.823, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b5797d59-709f-4025-a932-50762fc564dd" + }, + "attachedElementGuid" : { + "value" : "8c18ef6a-20ba-49f1-bdda-291982154820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b5797d59-709f-4025-a932-50762fc564dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "b5797d59-709f-4025-a932-50762fc564dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "b5797d59-709f-4025-a932-50762fc564dd" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "85869d84-2550-4fe0-91fd-0491ed30f042" + }, + "attachedElementGuid" : { + "value" : "b5797d59-709f-4025-a932-50762fc564dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "85869d84-2550-4fe0-91fd-0491ed30f042" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "85869d84-2550-4fe0-91fd-0491ed30f042" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "85869d84-2550-4fe0-91fd-0491ed30f042" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "85869d84-2550-4fe0-91fd-0491ed30f042" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 30, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "698fbe7e-6e59-4941-87e7-994410c1b062" + }, + "attachedElementGuid" : { + "value" : "88b99193-3259-4a73-81cb-391f8698662e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "698fbe7e-6e59-4941-87e7-994410c1b062" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "698fbe7e-6e59-4941-87e7-994410c1b062" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "698fbe7e-6e59-4941-87e7-994410c1b062" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b9a1e4db-7e59-435c-a03b-15d2ffb12acb" + }, + "attachedElementGuid" : { + "value" : "698fbe7e-6e59-4941-87e7-994410c1b062" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b9a1e4db-7e59-435c-a03b-15d2ffb12acb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b9a1e4db-7e59-435c-a03b-15d2ffb12acb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b9a1e4db-7e59-435c-a03b-15d2ffb12acb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "b9a1e4db-7e59-435c-a03b-15d2ffb12acb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 30.705, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d3308f3b-0d0e-4166-b9b9-29582116e698" + }, + "attachedElementGuid" : { + "value" : "88b99193-3259-4a73-81cb-391f8698662e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d3308f3b-0d0e-4166-b9b9-29582116e698" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "d3308f3b-0d0e-4166-b9b9-29582116e698" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "d3308f3b-0d0e-4166-b9b9-29582116e698" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0d9d7d6b-63e1-4a91-9be9-1b86304981ce" + }, + "attachedElementGuid" : { + "value" : "d3308f3b-0d0e-4166-b9b9-29582116e698" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0d9d7d6b-63e1-4a91-9be9-1b86304981ce" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0d9d7d6b-63e1-4a91-9be9-1b86304981ce" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0d9d7d6b-63e1-4a91-9be9-1b86304981ce" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "0d9d7d6b-63e1-4a91-9be9-1b86304981ce" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 31.235, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3279f651-5c46-4d22-9267-6279fc813013" + }, + "attachedElementGuid" : { + "value" : "9d002211-bbd3-45c5-a804-9b399aa1d03a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3279f651-5c46-4d22-9267-6279fc813013" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "3279f651-5c46-4d22-9267-6279fc813013" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "3279f651-5c46-4d22-9267-6279fc813013" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c8e0898a-740a-4197-bc97-3bad187d4acd" + }, + "attachedElementGuid" : { + "value" : "3279f651-5c46-4d22-9267-6279fc813013" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c8e0898a-740a-4197-bc97-3bad187d4acd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c8e0898a-740a-4197-bc97-3bad187d4acd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c8e0898a-740a-4197-bc97-3bad187d4acd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "c8e0898a-740a-4197-bc97-3bad187d4acd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 31.411, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8e7d47a0-ee7e-4395-8257-fe6040415333" + }, + "attachedElementGuid" : { + "value" : "8c18ef6a-20ba-49f1-bdda-291982154820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8e7d47a0-ee7e-4395-8257-fe6040415333" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "8e7d47a0-ee7e-4395-8257-fe6040415333" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "8e7d47a0-ee7e-4395-8257-fe6040415333" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "08da724f-c585-4bae-872b-2f8b84596710" + }, + "attachedElementGuid" : { + "value" : "8e7d47a0-ee7e-4395-8257-fe6040415333" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "08da724f-c585-4bae-872b-2f8b84596710" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "08da724f-c585-4bae-872b-2f8b84596710" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "08da724f-c585-4bae-872b-2f8b84596710" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "08da724f-c585-4bae-872b-2f8b84596710" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 32.117, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "32dd0ccd-005c-4e14-8d79-dafc250d030d" + }, + "attachedElementGuid" : { + "value" : "8c18ef6a-20ba-49f1-bdda-291982154820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "32dd0ccd-005c-4e14-8d79-dafc250d030d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "32dd0ccd-005c-4e14-8d79-dafc250d030d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "32dd0ccd-005c-4e14-8d79-dafc250d030d" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "dac09005-01fc-46c5-95ca-1f4cc49854fe" + }, + "attachedElementGuid" : { + "value" : "32dd0ccd-005c-4e14-8d79-dafc250d030d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "dac09005-01fc-46c5-95ca-1f4cc49854fe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "dac09005-01fc-46c5-95ca-1f4cc49854fe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "dac09005-01fc-46c5-95ca-1f4cc49854fe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "dac09005-01fc-46c5-95ca-1f4cc49854fe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 32.674, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7576db18-da93-4a22-ae26-1006aeb90169" + }, + "attachedElementGuid" : { + "value" : "3bbf2358-c25e-4d7b-ac86-48e6781f61fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7576db18-da93-4a22-ae26-1006aeb90169" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "7576db18-da93-4a22-ae26-1006aeb90169" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "7576db18-da93-4a22-ae26-1006aeb90169" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "199fdf40-d839-4219-a018-5043830c514f" + }, + "attachedElementGuid" : { + "value" : "7576db18-da93-4a22-ae26-1006aeb90169" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "199fdf40-d839-4219-a018-5043830c514f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "199fdf40-d839-4219-a018-5043830c514f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "199fdf40-d839-4219-a018-5043830c514f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "199fdf40-d839-4219-a018-5043830c514f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 32.823, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "747d545c-86e1-4775-a352-b668046dac1d" + }, + "attachedElementGuid" : { + "value" : "88b99193-3259-4a73-81cb-391f8698662e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "747d545c-86e1-4775-a352-b668046dac1d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "747d545c-86e1-4775-a352-b668046dac1d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "747d545c-86e1-4775-a352-b668046dac1d" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f39b6f75-6426-402e-b820-889251427af0" + }, + "attachedElementGuid" : { + "value" : "747d545c-86e1-4775-a352-b668046dac1d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f39b6f75-6426-402e-b820-889251427af0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f39b6f75-6426-402e-b820-889251427af0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f39b6f75-6426-402e-b820-889251427af0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "f39b6f75-6426-402e-b820-889251427af0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 33.529, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1e897ea5-9258-4bc2-afaa-80fbb8b0b592" + }, + "attachedElementGuid" : { + "value" : "88b99193-3259-4a73-81cb-391f8698662e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1e897ea5-9258-4bc2-afaa-80fbb8b0b592" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "1e897ea5-9258-4bc2-afaa-80fbb8b0b592" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "1e897ea5-9258-4bc2-afaa-80fbb8b0b592" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "32436671-a85d-4fed-8513-341072d683a8" + }, + "attachedElementGuid" : { + "value" : "1e897ea5-9258-4bc2-afaa-80fbb8b0b592" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "32436671-a85d-4fed-8513-341072d683a8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "32436671-a85d-4fed-8513-341072d683a8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "32436671-a85d-4fed-8513-341072d683a8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "32436671-a85d-4fed-8513-341072d683a8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp", + "elementName" : "p3", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0715154f-be1f-44a9-a055-241671af6ca7" + }, + "attachedElementGuid" : { + "value" : "00000000-0000-0000-0000-000000000000" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0715154f-be1f-44a9-a055-241671af6ca7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0715154f-be1f-44a9-a055-241671af6ca7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp", + "elementName" : "note", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1cd13b24-28cc-4f71-b607-11364449213f" + }, + "attachedElementGuid" : { + "value" : "0715154f-be1f-44a9-a055-241671af6ca7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "1cd13b24-28cc-4f71-b607-11364449213f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1cd13b24-28cc-4f71-b607-11364449213f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "New Track", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1ac7a8c9-2ec7-4d2b-b17a-d4dc54cca7ad" + }, + "attachedElementGuid" : { + "value" : "1cd13b24-28cc-4f71-b607-11364449213f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "1ac7a8c9-2ec7-4d2b-b17a-d4dc54cca7ad" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1ac7a8c9-2ec7-4d2b-b17a-d4dc54cca7ad" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 0, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "1ac7a8c9-2ec7-4d2b-b17a-d4dc54cca7ad" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 35.294, + "trackEndTime" : 46.588, + "visibleTrackTimeLength" : 10, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "1ac7a8c9-2ec7-4d2b-b17a-d4dc54cca7ad" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8a9dd932-a07f-4445-a062-52debf5b36d8" + }, + "attachedElementGuid" : { + "value" : "1ac7a8c9-2ec7-4d2b-b17a-d4dc54cca7ad" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -6, + "y" : 3, + "z" : 426 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8a9dd932-a07f-4445-a062-52debf5b36d8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8a9dd932-a07f-4445-a062-52debf5b36d8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8a9dd932-a07f-4445-a062-52debf5b36d8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "78ca83ec-56f3-4836-a9c1-0c3c04b4c2aa" + }, + "attachedElementGuid" : { + "value" : "1ac7a8c9-2ec7-4d2b-b17a-d4dc54cca7ad" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -6, + "y" : 3, + "z" : 612 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "78ca83ec-56f3-4836-a9c1-0c3c04b4c2aa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "78ca83ec-56f3-4836-a9c1-0c3c04b4c2aa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "78ca83ec-56f3-4836-a9c1-0c3c04b4c2aa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "35.294-46.588", + "tags" : [ + + ], + "elementGuid" : { + "value" : "abb0bca8-815f-422a-8931-12a7b83d38e2" + }, + "attachedElementGuid" : { + "value" : "4ee7f15e-c6f6-40e5-b9e8-8e4887afe797" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "abb0bca8-815f-422a-8931-12a7b83d38e2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "abb0bca8-815f-422a-8931-12a7b83d38e2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 0, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "abb0bca8-815f-422a-8931-12a7b83d38e2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 35.294, + "trackEndTime" : 46.588, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "abb0bca8-815f-422a-8931-12a7b83d38e2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "91adecfa-af1c-4a2a-af96-80184cf99404" + }, + "attachedElementGuid" : { + "value" : "abb0bca8-815f-422a-8931-12a7b83d38e2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 7, + "z" : 416 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "91adecfa-af1c-4a2a-af96-80184cf99404" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "91adecfa-af1c-4a2a-af96-80184cf99404" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "91adecfa-af1c-4a2a-af96-80184cf99404" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e7ab7699-3968-483c-96e3-03ae9776d44c" + }, + "attachedElementGuid" : { + "value" : "abb0bca8-815f-422a-8931-12a7b83d38e2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 7, + "z" : 604 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e7ab7699-3968-483c-96e3-03ae9776d44c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e7ab7699-3968-483c-96e3-03ae9776d44c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e7ab7699-3968-483c-96e3-03ae9776d44c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "55172868-62a5-4ea3-88d8-c7b97161771f" + }, + "attachedElementGuid" : { + "value" : "1ac7a8c9-2ec7-4d2b-b17a-d4dc54cca7ad" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "55172868-62a5-4ea3-88d8-c7b97161771f" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 35.294 + },{ + "value" : false, + "time" : 46.588 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "14dd737b-30f9-4dde-8586-3a3d0a98354c" + }, + "attachedElementGuid" : { + "value" : "55172868-62a5-4ea3-88d8-c7b97161771f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "14dd737b-30f9-4dde-8586-3a3d0a98354c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "14dd737b-30f9-4dde-8586-3a3d0a98354c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "14dd737b-30f9-4dde-8586-3a3d0a98354c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Displacement_BM,Assembly-CSharp", + "positionX" : { + "animatedFloatList" : [ + { + "startValue" : -5, + "endValue" : 0, + "startTime" : 35.294, + "endTime" : 36.176, + "animationCurveType" : 2 + },{ + "startValue" : -5, + "endValue" : 0, + "startTime" : 36.176, + "endTime" : 36.705, + "animationCurveType" : 2 + },{ + "startValue" : -5, + "endValue" : 0, + "startTime" : 36.705, + "endTime" : 37.588, + "animationCurveType" : 2 + },{ + "startValue" : -5, + "endValue" : 0, + "startTime" : 37.588, + "endTime" : 38.117, + "animationCurveType" : 2 + } + ] + }, + "positionY" : { + "animatedFloatList" : [ + + ] + }, + "positionZ" : { + "animatedFloatList" : [ + + ] + }, + "elementName" : "New Displacement", + "tags" : [ + + ], + "elementGuid" : { + "value" : "549b6156-ad17-42af-b68d-398afd81a736" + }, + "attachedElementGuid" : { + "value" : "14dd737b-30f9-4dde-8586-3a3d0a98354c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "549b6156-ad17-42af-b68d-398afd81a736" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "New Track", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bab63746-dcee-4915-bbb4-8adb08b5ceba" + }, + "attachedElementGuid" : { + "value" : "1cd13b24-28cc-4f71-b607-11364449213f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "bab63746-dcee-4915-bbb4-8adb08b5ceba" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bab63746-dcee-4915-bbb4-8adb08b5ceba" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 0, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "bab63746-dcee-4915-bbb4-8adb08b5ceba" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 35.294, + "trackEndTime" : 46.588, + "visibleTrackTimeLength" : 10, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "bab63746-dcee-4915-bbb4-8adb08b5ceba" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "59044b25-7256-4c85-9e60-da95a8fe363c" + }, + "attachedElementGuid" : { + "value" : "bab63746-dcee-4915-bbb4-8adb08b5ceba" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -3, + "y" : 3, + "z" : 426 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "59044b25-7256-4c85-9e60-da95a8fe363c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "59044b25-7256-4c85-9e60-da95a8fe363c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "59044b25-7256-4c85-9e60-da95a8fe363c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5a679e6f-da2f-4dbe-888d-0a994b37e4da" + }, + "attachedElementGuid" : { + "value" : "bab63746-dcee-4915-bbb4-8adb08b5ceba" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -3, + "y" : 3, + "z" : 612 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5a679e6f-da2f-4dbe-888d-0a994b37e4da" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5a679e6f-da2f-4dbe-888d-0a994b37e4da" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5a679e6f-da2f-4dbe-888d-0a994b37e4da" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6ebaf92b-a4b4-4d98-9d12-fcfd9d9fc928" + }, + "attachedElementGuid" : { + "value" : "bab63746-dcee-4915-bbb4-8adb08b5ceba" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6ebaf92b-a4b4-4d98-9d12-fcfd9d9fc928" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 35.294 + },{ + "value" : false, + "time" : 46.588 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0b525f50-28c7-4eb0-b960-9049f9354900" + }, + "attachedElementGuid" : { + "value" : "6ebaf92b-a4b4-4d98-9d12-fcfd9d9fc928" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0b525f50-28c7-4eb0-b960-9049f9354900" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0b525f50-28c7-4eb0-b960-9049f9354900" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "0b525f50-28c7-4eb0-b960-9049f9354900" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Displacement_BM,Assembly-CSharp", + "positionX" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 0, + "startTime" : 0, + "endTime" : 38.117, + "animationCurveType" : 2 + },{ + "startValue" : -5, + "endValue" : 0, + "startTime" : 38.117, + "endTime" : 39, + "animationCurveType" : 2 + },{ + "startValue" : -5, + "endValue" : 0, + "startTime" : 39, + "endTime" : 39.529, + "animationCurveType" : 2 + },{ + "startValue" : -5, + "endValue" : 0, + "startTime" : 39.529, + "endTime" : 40.411, + "animationCurveType" : 2 + },{ + "startValue" : -5, + "endValue" : 0, + "startTime" : 40.411, + "endTime" : 41, + "animationCurveType" : 2 + } + ] + }, + "positionY" : { + "animatedFloatList" : [ + + ] + }, + "positionZ" : { + "animatedFloatList" : [ + + ] + }, + "elementName" : "New Displacement", + "tags" : [ + + ], + "elementGuid" : { + "value" : "25f47664-598c-4137-a345-a8b393c1f427" + }, + "attachedElementGuid" : { + "value" : "0b525f50-28c7-4eb0-b960-9049f9354900" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "25f47664-598c-4137-a345-a8b393c1f427" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "New Track", + "tags" : [ + + ], + "elementGuid" : { + "value" : "37804f95-0334-4b03-8adb-1f3617be23dd" + }, + "attachedElementGuid" : { + "value" : "1cd13b24-28cc-4f71-b607-11364449213f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "37804f95-0334-4b03-8adb-1f3617be23dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "37804f95-0334-4b03-8adb-1f3617be23dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 0, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "37804f95-0334-4b03-8adb-1f3617be23dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 35.294, + "trackEndTime" : 46.588, + "visibleTrackTimeLength" : 10, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "37804f95-0334-4b03-8adb-1f3617be23dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3027f77e-9f55-48e7-bff0-550d9f9221e0" + }, + "attachedElementGuid" : { + "value" : "37804f95-0334-4b03-8adb-1f3617be23dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 3, + "z" : 426 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3027f77e-9f55-48e7-bff0-550d9f9221e0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3027f77e-9f55-48e7-bff0-550d9f9221e0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3027f77e-9f55-48e7-bff0-550d9f9221e0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a011afc5-7d66-44c4-95fa-f65d8cf58218" + }, + "attachedElementGuid" : { + "value" : "37804f95-0334-4b03-8adb-1f3617be23dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 3, + "z" : 612 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a011afc5-7d66-44c4-95fa-f65d8cf58218" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a011afc5-7d66-44c4-95fa-f65d8cf58218" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a011afc5-7d66-44c4-95fa-f65d8cf58218" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "617e9149-9ab7-4e1f-a4d2-a8af2b1b0cf6" + }, + "attachedElementGuid" : { + "value" : "37804f95-0334-4b03-8adb-1f3617be23dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "617e9149-9ab7-4e1f-a4d2-a8af2b1b0cf6" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 35.294 + },{ + "value" : false, + "time" : 46.588 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d7c09f16-6525-4e89-8d7d-f1dccd5f33ca" + }, + "attachedElementGuid" : { + "value" : "617e9149-9ab7-4e1f-a4d2-a8af2b1b0cf6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d7c09f16-6525-4e89-8d7d-f1dccd5f33ca" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d7c09f16-6525-4e89-8d7d-f1dccd5f33ca" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "d7c09f16-6525-4e89-8d7d-f1dccd5f33ca" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Displacement_BM,Assembly-CSharp", + "positionX" : { + "animatedFloatList" : [ + + ] + }, + "positionY" : { + "animatedFloatList" : [ + + ] + }, + "positionZ" : { + "animatedFloatList" : [ + + ] + }, + "elementName" : "New Displacement", + "tags" : [ + + ], + "elementGuid" : { + "value" : "92669a11-8610-40f8-8ab5-6e8cf297990c" + }, + "attachedElementGuid" : { + "value" : "d7c09f16-6525-4e89-8d7d-f1dccd5f33ca" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "92669a11-8610-40f8-8ab5-6e8cf297990c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "New Track", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d6ce97bb-c525-49bc-98e5-0aa6bede4b3b" + }, + "attachedElementGuid" : { + "value" : "1cd13b24-28cc-4f71-b607-11364449213f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d6ce97bb-c525-49bc-98e5-0aa6bede4b3b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d6ce97bb-c525-49bc-98e5-0aa6bede4b3b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 0, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "d6ce97bb-c525-49bc-98e5-0aa6bede4b3b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 35.294, + "trackEndTime" : 46.588, + "visibleTrackTimeLength" : 10, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "d6ce97bb-c525-49bc-98e5-0aa6bede4b3b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "35c2f7d1-9195-40b7-bbde-4c1265e856a2" + }, + "attachedElementGuid" : { + "value" : "d6ce97bb-c525-49bc-98e5-0aa6bede4b3b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 3, + "y" : 3, + "z" : 426 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "35c2f7d1-9195-40b7-bbde-4c1265e856a2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "35c2f7d1-9195-40b7-bbde-4c1265e856a2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "35c2f7d1-9195-40b7-bbde-4c1265e856a2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8ae96e5c-8c15-4f77-bc46-0f70c5b8e6a3" + }, + "attachedElementGuid" : { + "value" : "d6ce97bb-c525-49bc-98e5-0aa6bede4b3b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 3, + "y" : 3, + "z" : 612 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8ae96e5c-8c15-4f77-bc46-0f70c5b8e6a3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8ae96e5c-8c15-4f77-bc46-0f70c5b8e6a3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8ae96e5c-8c15-4f77-bc46-0f70c5b8e6a3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b7e039f5-c868-420d-a80d-940db5d32b87" + }, + "attachedElementGuid" : { + "value" : "d6ce97bb-c525-49bc-98e5-0aa6bede4b3b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b7e039f5-c868-420d-a80d-940db5d32b87" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 35.294 + },{ + "value" : false, + "time" : 46.588 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c1a7e06d-82bf-4936-b974-8b520ad0b8a8" + }, + "attachedElementGuid" : { + "value" : "b7e039f5-c868-420d-a80d-940db5d32b87" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c1a7e06d-82bf-4936-b974-8b520ad0b8a8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c1a7e06d-82bf-4936-b974-8b520ad0b8a8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "c1a7e06d-82bf-4936-b974-8b520ad0b8a8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Displacement_BM,Assembly-CSharp", + "positionX" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 0, + "startTime" : 0, + "endTime" : 43.764, + "animationCurveType" : 0 + },{ + "startValue" : 5, + "endValue" : 0, + "startTime" : 43.764, + "endTime" : 44.641, + "animationCurveType" : 2 + },{ + "startValue" : 5, + "endValue" : 0, + "startTime" : 44.641, + "endTime" : 45.176, + "animationCurveType" : 2 + },{ + "startValue" : 5, + "endValue" : 0, + "startTime" : 45.176, + "endTime" : 46.058, + "animationCurveType" : 2 + },{ + "startValue" : 5, + "endValue" : 0, + "startTime" : 46.058, + "endTime" : 47, + "animationCurveType" : 2 + } + ] + }, + "positionY" : { + "animatedFloatList" : [ + + ] + }, + "positionZ" : { + "animatedFloatList" : [ + + ] + }, + "elementName" : "New Displacement", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a76484f5-bc6f-4fbc-af01-df6b4bf7a2d6" + }, + "attachedElementGuid" : { + "value" : "c1a7e06d-82bf-4936-b974-8b520ad0b8a8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a76484f5-bc6f-4fbc-af01-df6b4bf7a2d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.BaseColorChange_BM,Assembly-CSharp", + "colorR" : { + "animatedFloatList" : [ + { + "startValue" : 0.5, + "endValue" : 0.5, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorG" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorB" : { + "animatedFloatList" : [ + { + "startValue" : 0.5, + "endValue" : 0.5, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorA" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + },{ + "startValue" : 1, + "endValue" : 0.75, + "startTime" : 35.294, + "endTime" : 36.176, + "animationCurveType" : 2 + },{ + "startValue" : 0.75, + "endValue" : 0.5, + "startTime" : 36.176, + "endTime" : 36.705, + "animationCurveType" : 2 + },{ + "startValue" : 0.5, + "endValue" : 0.25, + "startTime" : 36.705, + "endTime" : 37.588, + "animationCurveType" : 2 + },{ + "startValue" : 0.25, + "endValue" : 0, + "startTime" : 37.588, + "endTime" : 38.117, + "animationCurveType" : 11 + } + ] + }, + "elementName" : "New Base Color Change", + "tags" : [ + + ], + "elementGuid" : { + "value" : "da23dde6-7787-4e3f-8ffc-55581cdae8cf" + }, + "attachedElementGuid" : { + "value" : "14dd737b-30f9-4dde-8586-3a3d0a98354c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "da23dde6-7787-4e3f-8ffc-55581cdae8cf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.BaseColorChange_BM,Assembly-CSharp", + "colorR" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 0, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorG" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorB" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorA" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + },{ + "startValue" : 1, + "endValue" : 0.75, + "startTime" : 43.764, + "endTime" : 44.641, + "animationCurveType" : 2 + },{ + "startValue" : 0.75, + "endValue" : 0.5, + "startTime" : 44.641, + "endTime" : 45.176, + "animationCurveType" : 2 + },{ + "startValue" : 0.5, + "endValue" : 0.25, + "startTime" : 45.176, + "endTime" : 46.058, + "animationCurveType" : 2 + },{ + "startValue" : 0.25, + "endValue" : 0, + "startTime" : 46.058, + "endTime" : 47, + "animationCurveType" : 11 + } + ] + }, + "elementName" : "New Base Color Change", + "tags" : [ + + ], + "elementGuid" : { + "value" : "06e4efac-87d6-45ef-8963-5aeeaa1eb4ed" + }, + "attachedElementGuid" : { + "value" : "c1a7e06d-82bf-4936-b974-8b520ad0b8a8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "06e4efac-87d6-45ef-8963-5aeeaa1eb4ed" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Flick_BM,Assembly-CSharp", + "availableFlickDirections" : [ + + ], + "exactJudgeTime" : 35.294, + "elementName" : "New Flick", + "tags" : [ + + ], + "elementGuid" : { + "value" : "df1fbed4-1b4e-4449-af61-16f67f30f712" + }, + "attachedElementGuid" : { + "value" : "1ac7a8c9-2ec7-4d2b-b17a-d4dc54cca7ad" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "df1fbed4-1b4e-4449-af61-16f67f30f712" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + + ], + "attachedElementGuid" : { + "value" : "df1fbed4-1b4e-4449-af61-16f67f30f712" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "df1fbed4-1b4e-4449-af61-16f67f30f712" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualFlick", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c6cffdad-d287-4b41-aabf-a7c06590cb92" + }, + "attachedElementGuid" : { + "value" : "df1fbed4-1b4e-4449-af61-16f67f30f712" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c6cffdad-d287-4b41-aabf-a7c06590cb92" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c6cffdad-d287-4b41-aabf-a7c06590cb92" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c6cffdad-d287-4b41-aabf-a7c06590cb92" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "c6cffdad-d287-4b41-aabf-a7c06590cb92" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Flick_BM,Assembly-CSharp", + "availableFlickDirections" : [ + + ], + "exactJudgeTime" : 36.176, + "elementName" : "New Flick", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a4199578-77cb-40fc-bda6-83a241010e49" + }, + "attachedElementGuid" : { + "value" : "1ac7a8c9-2ec7-4d2b-b17a-d4dc54cca7ad" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a4199578-77cb-40fc-bda6-83a241010e49" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + + ], + "attachedElementGuid" : { + "value" : "a4199578-77cb-40fc-bda6-83a241010e49" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "a4199578-77cb-40fc-bda6-83a241010e49" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualFlick", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "471f2053-19e6-435e-ae79-41a7dabad49f" + }, + "attachedElementGuid" : { + "value" : "a4199578-77cb-40fc-bda6-83a241010e49" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "471f2053-19e6-435e-ae79-41a7dabad49f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "471f2053-19e6-435e-ae79-41a7dabad49f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "471f2053-19e6-435e-ae79-41a7dabad49f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "471f2053-19e6-435e-ae79-41a7dabad49f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Flick_BM,Assembly-CSharp", + "availableFlickDirections" : [ + + ], + "exactJudgeTime" : 36.705, + "elementName" : "New Flick", + "tags" : [ + + ], + "elementGuid" : { + "value" : "40ee9668-4c0f-42b5-b807-a8a5725dbb0f" + }, + "attachedElementGuid" : { + "value" : "1ac7a8c9-2ec7-4d2b-b17a-d4dc54cca7ad" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "40ee9668-4c0f-42b5-b807-a8a5725dbb0f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + + ], + "attachedElementGuid" : { + "value" : "40ee9668-4c0f-42b5-b807-a8a5725dbb0f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "40ee9668-4c0f-42b5-b807-a8a5725dbb0f" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualFlick", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9dd9d0e3-cc20-4035-9c92-4c28ab9ce251" + }, + "attachedElementGuid" : { + "value" : "40ee9668-4c0f-42b5-b807-a8a5725dbb0f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9dd9d0e3-cc20-4035-9c92-4c28ab9ce251" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9dd9d0e3-cc20-4035-9c92-4c28ab9ce251" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "9dd9d0e3-cc20-4035-9c92-4c28ab9ce251" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "9dd9d0e3-cc20-4035-9c92-4c28ab9ce251" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Flick_BM,Assembly-CSharp", + "availableFlickDirections" : [ + + ], + "exactJudgeTime" : 37.588, + "elementName" : "New Flick", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e78c0915-c5f6-4e80-8a2d-eeb6d6570eb6" + }, + "attachedElementGuid" : { + "value" : "1ac7a8c9-2ec7-4d2b-b17a-d4dc54cca7ad" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e78c0915-c5f6-4e80-8a2d-eeb6d6570eb6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + + ], + "attachedElementGuid" : { + "value" : "e78c0915-c5f6-4e80-8a2d-eeb6d6570eb6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "e78c0915-c5f6-4e80-8a2d-eeb6d6570eb6" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualFlick", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6c496739-258c-44ba-a7c2-275c4445d852" + }, + "attachedElementGuid" : { + "value" : "e78c0915-c5f6-4e80-8a2d-eeb6d6570eb6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6c496739-258c-44ba-a7c2-275c4445d852" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6c496739-258c-44ba-a7c2-275c4445d852" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6c496739-258c-44ba-a7c2-275c4445d852" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "6c496739-258c-44ba-a7c2-275c4445d852" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.BaseColorChange_BM,Assembly-CSharp", + "colorR" : { + "animatedFloatList" : [ + { + "startValue" : 0.5, + "endValue" : 0.5, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorG" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorB" : { + "animatedFloatList" : [ + { + "startValue" : 0.5, + "endValue" : 0.5, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorA" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + },{ + "startValue" : 1, + "endValue" : 0.75, + "startTime" : 38.117, + "endTime" : 39, + "animationCurveType" : 2 + },{ + "startValue" : 0.75, + "endValue" : 0.5, + "startTime" : 39, + "endTime" : 40.411, + "animationCurveType" : 2 + },{ + "startValue" : 0.5, + "endValue" : 0.25, + "startTime" : 40.411, + "endTime" : 40.411, + "animationCurveType" : 2 + },{ + "startValue" : 0.25, + "endValue" : 0, + "startTime" : 40.411, + "endTime" : 41, + "animationCurveType" : 11 + } + ] + }, + "elementName" : "New Base Color Change", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ad367edd-f59d-46ad-9b2a-0fe979d0e070" + }, + "attachedElementGuid" : { + "value" : "0b525f50-28c7-4eb0-b960-9049f9354900" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ad367edd-f59d-46ad-9b2a-0fe979d0e070" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Flick_BM,Assembly-CSharp", + "availableFlickDirections" : [ + + ], + "exactJudgeTime" : 38.117, + "elementName" : "New Flick", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a1791065-4bd5-4116-b614-73402b3ae47b" + }, + "attachedElementGuid" : { + "value" : "bab63746-dcee-4915-bbb4-8adb08b5ceba" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a1791065-4bd5-4116-b614-73402b3ae47b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + + ], + "attachedElementGuid" : { + "value" : "a1791065-4bd5-4116-b614-73402b3ae47b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "a1791065-4bd5-4116-b614-73402b3ae47b" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualFlick", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "68dd0191-98b2-4441-9ca9-655b7dfe9c42" + }, + "attachedElementGuid" : { + "value" : "a1791065-4bd5-4116-b614-73402b3ae47b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "68dd0191-98b2-4441-9ca9-655b7dfe9c42" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "68dd0191-98b2-4441-9ca9-655b7dfe9c42" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "68dd0191-98b2-4441-9ca9-655b7dfe9c42" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "68dd0191-98b2-4441-9ca9-655b7dfe9c42" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Flick_BM,Assembly-CSharp", + "availableFlickDirections" : [ + + ], + "exactJudgeTime" : 39, + "elementName" : "New Flick", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4c675fdb-8fb6-4778-afa6-869b177f27d0" + }, + "attachedElementGuid" : { + "value" : "bab63746-dcee-4915-bbb4-8adb08b5ceba" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4c675fdb-8fb6-4778-afa6-869b177f27d0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + + ], + "attachedElementGuid" : { + "value" : "4c675fdb-8fb6-4778-afa6-869b177f27d0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "4c675fdb-8fb6-4778-afa6-869b177f27d0" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualFlick", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0b9ddc05-ef0c-4b20-9655-fd3834f10b97" + }, + "attachedElementGuid" : { + "value" : "4c675fdb-8fb6-4778-afa6-869b177f27d0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0b9ddc05-ef0c-4b20-9655-fd3834f10b97" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0b9ddc05-ef0c-4b20-9655-fd3834f10b97" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0b9ddc05-ef0c-4b20-9655-fd3834f10b97" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "0b9ddc05-ef0c-4b20-9655-fd3834f10b97" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Flick_BM,Assembly-CSharp", + "availableFlickDirections" : [ + + ], + "exactJudgeTime" : 39.529, + "elementName" : "New Flick", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b3487baa-6675-4209-a07d-bf097dcee452" + }, + "attachedElementGuid" : { + "value" : "bab63746-dcee-4915-bbb4-8adb08b5ceba" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b3487baa-6675-4209-a07d-bf097dcee452" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + + ], + "attachedElementGuid" : { + "value" : "b3487baa-6675-4209-a07d-bf097dcee452" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "b3487baa-6675-4209-a07d-bf097dcee452" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualFlick", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "dc8936c5-7a4b-4e02-bb17-5beafade0420" + }, + "attachedElementGuid" : { + "value" : "b3487baa-6675-4209-a07d-bf097dcee452" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "dc8936c5-7a4b-4e02-bb17-5beafade0420" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "dc8936c5-7a4b-4e02-bb17-5beafade0420" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "dc8936c5-7a4b-4e02-bb17-5beafade0420" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "dc8936c5-7a4b-4e02-bb17-5beafade0420" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Flick_BM,Assembly-CSharp", + "availableFlickDirections" : [ + + ], + "exactJudgeTime" : 40.411, + "elementName" : "New Flick", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d87a8001-b23e-41f4-9f1b-442bd5831c9c" + }, + "attachedElementGuid" : { + "value" : "bab63746-dcee-4915-bbb4-8adb08b5ceba" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d87a8001-b23e-41f4-9f1b-442bd5831c9c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + + ], + "attachedElementGuid" : { + "value" : "d87a8001-b23e-41f4-9f1b-442bd5831c9c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "d87a8001-b23e-41f4-9f1b-442bd5831c9c" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualFlick", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1eb4553e-522f-45b6-a5b6-7b1192e44173" + }, + "attachedElementGuid" : { + "value" : "d87a8001-b23e-41f4-9f1b-442bd5831c9c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "1eb4553e-522f-45b6-a5b6-7b1192e44173" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1eb4553e-522f-45b6-a5b6-7b1192e44173" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "1eb4553e-522f-45b6-a5b6-7b1192e44173" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "1eb4553e-522f-45b6-a5b6-7b1192e44173" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "New Track", + "tags" : [ + + ], + "elementGuid" : { + "value" : "18cc15a1-a956-4fe9-9a4c-2f5af9dbbe75" + }, + "attachedElementGuid" : { + "value" : "1cd13b24-28cc-4f71-b607-11364449213f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "18cc15a1-a956-4fe9-9a4c-2f5af9dbbe75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "18cc15a1-a956-4fe9-9a4c-2f5af9dbbe75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 0, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "18cc15a1-a956-4fe9-9a4c-2f5af9dbbe75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 35.294, + "trackEndTime" : 46.588, + "visibleTrackTimeLength" : 10, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "18cc15a1-a956-4fe9-9a4c-2f5af9dbbe75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cd70f829-f040-4004-ac23-fa285685e184" + }, + "attachedElementGuid" : { + "value" : "18cc15a1-a956-4fe9-9a4c-2f5af9dbbe75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 6, + "y" : 3, + "z" : 426 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "cd70f829-f040-4004-ac23-fa285685e184" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "cd70f829-f040-4004-ac23-fa285685e184" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "cd70f829-f040-4004-ac23-fa285685e184" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "21e72e8d-ed43-4e36-9150-646adab6ba4e" + }, + "attachedElementGuid" : { + "value" : "18cc15a1-a956-4fe9-9a4c-2f5af9dbbe75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 6, + "y" : 3, + "z" : 612 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "21e72e8d-ed43-4e36-9150-646adab6ba4e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "21e72e8d-ed43-4e36-9150-646adab6ba4e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "21e72e8d-ed43-4e36-9150-646adab6ba4e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c4fc4882-19ad-4d04-9755-3d1ad4d15a1b" + }, + "attachedElementGuid" : { + "value" : "18cc15a1-a956-4fe9-9a4c-2f5af9dbbe75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c4fc4882-19ad-4d04-9755-3d1ad4d15a1b" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 35.294 + },{ + "value" : false, + "time" : 46.588 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "538531c3-56b1-485a-9d91-fc26007ea823" + }, + "attachedElementGuid" : { + "value" : "c4fc4882-19ad-4d04-9755-3d1ad4d15a1b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "538531c3-56b1-485a-9d91-fc26007ea823" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "538531c3-56b1-485a-9d91-fc26007ea823" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "538531c3-56b1-485a-9d91-fc26007ea823" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Displacement_BM,Assembly-CSharp", + "positionX" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 0, + "startTime" : 0, + "endTime" : 40.941, + "animationCurveType" : 0 + },{ + "startValue" : 5, + "endValue" : 0, + "startTime" : 40.941, + "endTime" : 41.823, + "animationCurveType" : 2 + },{ + "startValue" : 5, + "endValue" : 0, + "startTime" : 41.823, + "endTime" : 42.352, + "animationCurveType" : 2 + },{ + "startValue" : 5, + "endValue" : 0, + "startTime" : 42.352, + "endTime" : 43.235, + "animationCurveType" : 2 + },{ + "startValue" : 5, + "endValue" : 0, + "startTime" : 43.235, + "endTime" : 44, + "animationCurveType" : 2 + } + ] + }, + "positionY" : { + "animatedFloatList" : [ + + ] + }, + "positionZ" : { + "animatedFloatList" : [ + + ] + }, + "elementName" : "New Displacement", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c1ca3a2d-eb77-4603-8f63-cdeae4344f60" + }, + "attachedElementGuid" : { + "value" : "538531c3-56b1-485a-9d91-fc26007ea823" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c1ca3a2d-eb77-4603-8f63-cdeae4344f60" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.BaseColorChange_BM,Assembly-CSharp", + "colorR" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 0, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorG" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorB" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorA" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + },{ + "startValue" : 1, + "endValue" : 0.75, + "startTime" : 40.941, + "endTime" : 41.823, + "animationCurveType" : 2 + },{ + "startValue" : 0.75, + "endValue" : 0.5, + "startTime" : 41.823, + "endTime" : 42.352, + "animationCurveType" : 2 + },{ + "startValue" : 0.5, + "endValue" : 0.25, + "startTime" : 42.352, + "endTime" : 43.235, + "animationCurveType" : 2 + },{ + "startValue" : 0.25, + "endValue" : 0, + "startTime" : 43.235, + "endTime" : 44, + "animationCurveType" : 11 + } + ] + }, + "elementName" : "New Base Color Change", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1aabdb65-ef1f-450a-9664-a8c74cffddf8" + }, + "attachedElementGuid" : { + "value" : "538531c3-56b1-485a-9d91-fc26007ea823" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1aabdb65-ef1f-450a-9664-a8c74cffddf8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Flick_BM,Assembly-CSharp", + "availableFlickDirections" : [ + + ], + "exactJudgeTime" : 40.941, + "elementName" : "New Flick", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f89684ab-1826-47e8-9f12-d966905de360" + }, + "attachedElementGuid" : { + "value" : "18cc15a1-a956-4fe9-9a4c-2f5af9dbbe75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f89684ab-1826-47e8-9f12-d966905de360" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + + ], + "attachedElementGuid" : { + "value" : "f89684ab-1826-47e8-9f12-d966905de360" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "f89684ab-1826-47e8-9f12-d966905de360" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualFlick", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a0084326-dd75-4d55-8c94-7c3c04d3925d" + }, + "attachedElementGuid" : { + "value" : "f89684ab-1826-47e8-9f12-d966905de360" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a0084326-dd75-4d55-8c94-7c3c04d3925d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a0084326-dd75-4d55-8c94-7c3c04d3925d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a0084326-dd75-4d55-8c94-7c3c04d3925d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "a0084326-dd75-4d55-8c94-7c3c04d3925d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Flick_BM,Assembly-CSharp", + "availableFlickDirections" : [ + + ], + "exactJudgeTime" : 41.823, + "elementName" : "New Flick", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c03ab494-3b0b-4ca8-9436-fa38631c9014" + }, + "attachedElementGuid" : { + "value" : "18cc15a1-a956-4fe9-9a4c-2f5af9dbbe75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c03ab494-3b0b-4ca8-9436-fa38631c9014" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + + ], + "attachedElementGuid" : { + "value" : "c03ab494-3b0b-4ca8-9436-fa38631c9014" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "c03ab494-3b0b-4ca8-9436-fa38631c9014" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualFlick", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c1fddc15-f0cc-4bf2-a4bb-151d27e232fe" + }, + "attachedElementGuid" : { + "value" : "c03ab494-3b0b-4ca8-9436-fa38631c9014" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c1fddc15-f0cc-4bf2-a4bb-151d27e232fe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c1fddc15-f0cc-4bf2-a4bb-151d27e232fe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c1fddc15-f0cc-4bf2-a4bb-151d27e232fe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "c1fddc15-f0cc-4bf2-a4bb-151d27e232fe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Flick_BM,Assembly-CSharp", + "availableFlickDirections" : [ + + ], + "exactJudgeTime" : 42.352, + "elementName" : "New Flick", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cb8d234c-3deb-4d28-a89a-61e8e88bc657" + }, + "attachedElementGuid" : { + "value" : "18cc15a1-a956-4fe9-9a4c-2f5af9dbbe75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "cb8d234c-3deb-4d28-a89a-61e8e88bc657" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + + ], + "attachedElementGuid" : { + "value" : "cb8d234c-3deb-4d28-a89a-61e8e88bc657" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "cb8d234c-3deb-4d28-a89a-61e8e88bc657" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualFlick", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "43c74dca-79cf-497c-8116-a77ae3b7c9ce" + }, + "attachedElementGuid" : { + "value" : "cb8d234c-3deb-4d28-a89a-61e8e88bc657" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "43c74dca-79cf-497c-8116-a77ae3b7c9ce" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "43c74dca-79cf-497c-8116-a77ae3b7c9ce" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "43c74dca-79cf-497c-8116-a77ae3b7c9ce" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "43c74dca-79cf-497c-8116-a77ae3b7c9ce" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Flick_BM,Assembly-CSharp", + "availableFlickDirections" : [ + + ], + "exactJudgeTime" : 43.235, + "elementName" : "New Flick", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b3cc5ae1-6c53-49f5-b03d-3825146b9eb1" + }, + "attachedElementGuid" : { + "value" : "18cc15a1-a956-4fe9-9a4c-2f5af9dbbe75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b3cc5ae1-6c53-49f5-b03d-3825146b9eb1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + + ], + "attachedElementGuid" : { + "value" : "b3cc5ae1-6c53-49f5-b03d-3825146b9eb1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "b3cc5ae1-6c53-49f5-b03d-3825146b9eb1" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualFlick", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "209f8ae8-a880-4bec-a6fd-0f39510c3b68" + }, + "attachedElementGuid" : { + "value" : "b3cc5ae1-6c53-49f5-b03d-3825146b9eb1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "209f8ae8-a880-4bec-a6fd-0f39510c3b68" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "209f8ae8-a880-4bec-a6fd-0f39510c3b68" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "209f8ae8-a880-4bec-a6fd-0f39510c3b68" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "209f8ae8-a880-4bec-a6fd-0f39510c3b68" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Flick_BM,Assembly-CSharp", + "availableFlickDirections" : [ + + ], + "exactJudgeTime" : 43.764, + "elementName" : "New Flick", + "tags" : [ + + ], + "elementGuid" : { + "value" : "43e73a50-ed3f-48d2-afc6-dbd3d5f0626c" + }, + "attachedElementGuid" : { + "value" : "d6ce97bb-c525-49bc-98e5-0aa6bede4b3b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "43e73a50-ed3f-48d2-afc6-dbd3d5f0626c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + + ], + "attachedElementGuid" : { + "value" : "43e73a50-ed3f-48d2-afc6-dbd3d5f0626c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "43e73a50-ed3f-48d2-afc6-dbd3d5f0626c" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualFlick", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3bfa0377-fab9-4bde-8cc4-6b5925e9e32c" + }, + "attachedElementGuid" : { + "value" : "43e73a50-ed3f-48d2-afc6-dbd3d5f0626c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3bfa0377-fab9-4bde-8cc4-6b5925e9e32c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3bfa0377-fab9-4bde-8cc4-6b5925e9e32c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3bfa0377-fab9-4bde-8cc4-6b5925e9e32c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "3bfa0377-fab9-4bde-8cc4-6b5925e9e32c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Flick_BM,Assembly-CSharp", + "availableFlickDirections" : [ + + ], + "exactJudgeTime" : 44.641, + "elementName" : "New Flick", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ca122d18-a25c-4b6f-b412-395f8512cb06" + }, + "attachedElementGuid" : { + "value" : "d6ce97bb-c525-49bc-98e5-0aa6bede4b3b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ca122d18-a25c-4b6f-b412-395f8512cb06" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + + ], + "attachedElementGuid" : { + "value" : "ca122d18-a25c-4b6f-b412-395f8512cb06" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "ca122d18-a25c-4b6f-b412-395f8512cb06" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualFlick", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "dd46e244-3c21-4af4-8508-54b23d2c3aee" + }, + "attachedElementGuid" : { + "value" : "ca122d18-a25c-4b6f-b412-395f8512cb06" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "dd46e244-3c21-4af4-8508-54b23d2c3aee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "dd46e244-3c21-4af4-8508-54b23d2c3aee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "dd46e244-3c21-4af4-8508-54b23d2c3aee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "dd46e244-3c21-4af4-8508-54b23d2c3aee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Flick_BM,Assembly-CSharp", + "availableFlickDirections" : [ + + ], + "exactJudgeTime" : 45.176, + "elementName" : "New Flick", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9ac81333-5ef9-4434-9e55-7fe577f2d2a6" + }, + "attachedElementGuid" : { + "value" : "d6ce97bb-c525-49bc-98e5-0aa6bede4b3b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9ac81333-5ef9-4434-9e55-7fe577f2d2a6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + + ], + "attachedElementGuid" : { + "value" : "9ac81333-5ef9-4434-9e55-7fe577f2d2a6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "9ac81333-5ef9-4434-9e55-7fe577f2d2a6" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualFlick", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4be87d33-2b3b-440f-ab10-2ced62cafda7" + }, + "attachedElementGuid" : { + "value" : "9ac81333-5ef9-4434-9e55-7fe577f2d2a6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4be87d33-2b3b-440f-ab10-2ced62cafda7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4be87d33-2b3b-440f-ab10-2ced62cafda7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4be87d33-2b3b-440f-ab10-2ced62cafda7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "4be87d33-2b3b-440f-ab10-2ced62cafda7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Flick_BM,Assembly-CSharp", + "availableFlickDirections" : [ + + ], + "exactJudgeTime" : 46.058, + "elementName" : "New Flick", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f75ff432-1d6c-4869-8d6f-ee16eefe52d7" + }, + "attachedElementGuid" : { + "value" : "d6ce97bb-c525-49bc-98e5-0aa6bede4b3b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f75ff432-1d6c-4869-8d6f-ee16eefe52d7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + + ], + "attachedElementGuid" : { + "value" : "f75ff432-1d6c-4869-8d6f-ee16eefe52d7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "f75ff432-1d6c-4869-8d6f-ee16eefe52d7" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualFlick", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "22d99dd8-e6c4-4fa4-a0c6-84b1050d9fa2" + }, + "attachedElementGuid" : { + "value" : "f75ff432-1d6c-4869-8d6f-ee16eefe52d7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "22d99dd8-e6c4-4fa4-a0c6-84b1050d9fa2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "22d99dd8-e6c4-4fa4-a0c6-84b1050d9fa2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "22d99dd8-e6c4-4fa4-a0c6-84b1050d9fa2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "22d99dd8-e6c4-4fa4-a0c6-84b1050d9fa2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 35.47, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "72a1bbed-4c3a-49b9-9e5b-e734ba15dfcf" + }, + "attachedElementGuid" : { + "value" : "37804f95-0334-4b03-8adb-1f3617be23dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "72a1bbed-4c3a-49b9-9e5b-e734ba15dfcf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "72a1bbed-4c3a-49b9-9e5b-e734ba15dfcf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "72a1bbed-4c3a-49b9-9e5b-e734ba15dfcf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 35.647, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1de8663e-bef2-410f-9935-8ebdbab67827" + }, + "attachedElementGuid" : { + "value" : "37804f95-0334-4b03-8adb-1f3617be23dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1de8663e-bef2-410f-9935-8ebdbab67827" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "1de8663e-bef2-410f-9935-8ebdbab67827" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "1de8663e-bef2-410f-9935-8ebdbab67827" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ce2d6c42-1c27-4946-b1db-001e1b0fe878" + }, + "attachedElementGuid" : { + "value" : "72a1bbed-4c3a-49b9-9e5b-e734ba15dfcf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ce2d6c42-1c27-4946-b1db-001e1b0fe878" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ce2d6c42-1c27-4946-b1db-001e1b0fe878" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ce2d6c42-1c27-4946-b1db-001e1b0fe878" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "ce2d6c42-1c27-4946-b1db-001e1b0fe878" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a733a804-e302-4ab2-acff-9c316ea4281f" + }, + "attachedElementGuid" : { + "value" : "1de8663e-bef2-410f-9935-8ebdbab67827" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a733a804-e302-4ab2-acff-9c316ea4281f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a733a804-e302-4ab2-acff-9c316ea4281f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a733a804-e302-4ab2-acff-9c316ea4281f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "a733a804-e302-4ab2-acff-9c316ea4281f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 35.823, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "df0b1369-0728-4afa-8736-1197e8ccff32" + }, + "attachedElementGuid" : { + "value" : "37804f95-0334-4b03-8adb-1f3617be23dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "df0b1369-0728-4afa-8736-1197e8ccff32" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "df0b1369-0728-4afa-8736-1197e8ccff32" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "df0b1369-0728-4afa-8736-1197e8ccff32" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3f9e0e38-d98c-4305-8bb5-364067ebca6d" + }, + "attachedElementGuid" : { + "value" : "df0b1369-0728-4afa-8736-1197e8ccff32" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3f9e0e38-d98c-4305-8bb5-364067ebca6d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3f9e0e38-d98c-4305-8bb5-364067ebca6d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3f9e0e38-d98c-4305-8bb5-364067ebca6d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "3f9e0e38-d98c-4305-8bb5-364067ebca6d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 36.352, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5575981e-9561-4175-ad0d-ca33258d1ef8" + }, + "attachedElementGuid" : { + "value" : "37804f95-0334-4b03-8adb-1f3617be23dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5575981e-9561-4175-ad0d-ca33258d1ef8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "5575981e-9561-4175-ad0d-ca33258d1ef8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "5575981e-9561-4175-ad0d-ca33258d1ef8" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6ae48ef1-9aff-4d53-9924-922e27a2906e" + }, + "attachedElementGuid" : { + "value" : "5575981e-9561-4175-ad0d-ca33258d1ef8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6ae48ef1-9aff-4d53-9924-922e27a2906e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6ae48ef1-9aff-4d53-9924-922e27a2906e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6ae48ef1-9aff-4d53-9924-922e27a2906e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "6ae48ef1-9aff-4d53-9924-922e27a2906e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 36.529, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "dea9b749-1303-4347-ae80-27b4cb92426e" + }, + "attachedElementGuid" : { + "value" : "37804f95-0334-4b03-8adb-1f3617be23dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "dea9b749-1303-4347-ae80-27b4cb92426e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "dea9b749-1303-4347-ae80-27b4cb92426e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "dea9b749-1303-4347-ae80-27b4cb92426e" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c9af34d3-3112-4fdd-a829-656838ef7c42" + }, + "attachedElementGuid" : { + "value" : "dea9b749-1303-4347-ae80-27b4cb92426e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c9af34d3-3112-4fdd-a829-656838ef7c42" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c9af34d3-3112-4fdd-a829-656838ef7c42" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c9af34d3-3112-4fdd-a829-656838ef7c42" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "c9af34d3-3112-4fdd-a829-656838ef7c42" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 36.882, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "74ee9491-8eed-4fbb-8267-5c112df74e54" + }, + "attachedElementGuid" : { + "value" : "37804f95-0334-4b03-8adb-1f3617be23dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "74ee9491-8eed-4fbb-8267-5c112df74e54" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "74ee9491-8eed-4fbb-8267-5c112df74e54" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "74ee9491-8eed-4fbb-8267-5c112df74e54" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0b3ff6e4-66d5-4420-9ed7-49aa451af082" + }, + "attachedElementGuid" : { + "value" : "74ee9491-8eed-4fbb-8267-5c112df74e54" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0b3ff6e4-66d5-4420-9ed7-49aa451af082" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0b3ff6e4-66d5-4420-9ed7-49aa451af082" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0b3ff6e4-66d5-4420-9ed7-49aa451af082" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "0b3ff6e4-66d5-4420-9ed7-49aa451af082" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 37.058, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0f64c0c9-74d7-4b9d-b6f7-1e9954df0796" + }, + "attachedElementGuid" : { + "value" : "37804f95-0334-4b03-8adb-1f3617be23dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0f64c0c9-74d7-4b9d-b6f7-1e9954df0796" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "0f64c0c9-74d7-4b9d-b6f7-1e9954df0796" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "0f64c0c9-74d7-4b9d-b6f7-1e9954df0796" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "11cc3b1b-4abe-4907-b825-3217d9861876" + }, + "attachedElementGuid" : { + "value" : "0f64c0c9-74d7-4b9d-b6f7-1e9954df0796" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "11cc3b1b-4abe-4907-b825-3217d9861876" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "11cc3b1b-4abe-4907-b825-3217d9861876" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "11cc3b1b-4abe-4907-b825-3217d9861876" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "11cc3b1b-4abe-4907-b825-3217d9861876" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 37.235, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0c2b3cab-9a8f-4d42-8ec6-7945b32e57fd" + }, + "attachedElementGuid" : { + "value" : "37804f95-0334-4b03-8adb-1f3617be23dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0c2b3cab-9a8f-4d42-8ec6-7945b32e57fd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "0c2b3cab-9a8f-4d42-8ec6-7945b32e57fd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "0c2b3cab-9a8f-4d42-8ec6-7945b32e57fd" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8e370775-401b-40ef-93be-aa0e2ba20cb4" + }, + "attachedElementGuid" : { + "value" : "0c2b3cab-9a8f-4d42-8ec6-7945b32e57fd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8e370775-401b-40ef-93be-aa0e2ba20cb4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8e370775-401b-40ef-93be-aa0e2ba20cb4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8e370775-401b-40ef-93be-aa0e2ba20cb4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "8e370775-401b-40ef-93be-aa0e2ba20cb4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 37.764, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "492ddf90-f346-44f1-b029-cbdd59560046" + }, + "attachedElementGuid" : { + "value" : "37804f95-0334-4b03-8adb-1f3617be23dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "492ddf90-f346-44f1-b029-cbdd59560046" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "492ddf90-f346-44f1-b029-cbdd59560046" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "492ddf90-f346-44f1-b029-cbdd59560046" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1bafedb3-570d-4762-abe3-134745030a01" + }, + "attachedElementGuid" : { + "value" : "492ddf90-f346-44f1-b029-cbdd59560046" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "1bafedb3-570d-4762-abe3-134745030a01" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1bafedb3-570d-4762-abe3-134745030a01" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "1bafedb3-570d-4762-abe3-134745030a01" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "1bafedb3-570d-4762-abe3-134745030a01" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 37.941, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9d15156f-e541-4f83-be22-cccb59bf2d0b" + }, + "attachedElementGuid" : { + "value" : "37804f95-0334-4b03-8adb-1f3617be23dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9d15156f-e541-4f83-be22-cccb59bf2d0b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "9d15156f-e541-4f83-be22-cccb59bf2d0b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "9d15156f-e541-4f83-be22-cccb59bf2d0b" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3edcb1bd-03e7-4018-a2fe-ac17f74d07e2" + }, + "attachedElementGuid" : { + "value" : "9d15156f-e541-4f83-be22-cccb59bf2d0b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3edcb1bd-03e7-4018-a2fe-ac17f74d07e2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3edcb1bd-03e7-4018-a2fe-ac17f74d07e2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3edcb1bd-03e7-4018-a2fe-ac17f74d07e2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "3edcb1bd-03e7-4018-a2fe-ac17f74d07e2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 38.294, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e35bc704-250b-4713-966c-74808caa4348" + }, + "attachedElementGuid" : { + "value" : "37804f95-0334-4b03-8adb-1f3617be23dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e35bc704-250b-4713-966c-74808caa4348" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "e35bc704-250b-4713-966c-74808caa4348" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "e35bc704-250b-4713-966c-74808caa4348" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "373bc5f5-3e67-4beb-a4d2-a2fe71de65d9" + }, + "attachedElementGuid" : { + "value" : "e35bc704-250b-4713-966c-74808caa4348" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "373bc5f5-3e67-4beb-a4d2-a2fe71de65d9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "373bc5f5-3e67-4beb-a4d2-a2fe71de65d9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "373bc5f5-3e67-4beb-a4d2-a2fe71de65d9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "373bc5f5-3e67-4beb-a4d2-a2fe71de65d9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 38.47, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6d1602aa-41bc-4e54-815e-2f88e472082e" + }, + "attachedElementGuid" : { + "value" : "37804f95-0334-4b03-8adb-1f3617be23dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6d1602aa-41bc-4e54-815e-2f88e472082e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "6d1602aa-41bc-4e54-815e-2f88e472082e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "6d1602aa-41bc-4e54-815e-2f88e472082e" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "764adf43-785b-436b-aa31-09b86d4b0444" + }, + "attachedElementGuid" : { + "value" : "6d1602aa-41bc-4e54-815e-2f88e472082e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "764adf43-785b-436b-aa31-09b86d4b0444" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "764adf43-785b-436b-aa31-09b86d4b0444" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "764adf43-785b-436b-aa31-09b86d4b0444" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "764adf43-785b-436b-aa31-09b86d4b0444" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 38.647, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3f2a2e68-de48-44ff-8e0f-5ad559256e9b" + }, + "attachedElementGuid" : { + "value" : "37804f95-0334-4b03-8adb-1f3617be23dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3f2a2e68-de48-44ff-8e0f-5ad559256e9b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "3f2a2e68-de48-44ff-8e0f-5ad559256e9b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "3f2a2e68-de48-44ff-8e0f-5ad559256e9b" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "91a3eded-5095-46b0-8014-f87d6ddc2d3e" + }, + "attachedElementGuid" : { + "value" : "3f2a2e68-de48-44ff-8e0f-5ad559256e9b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "91a3eded-5095-46b0-8014-f87d6ddc2d3e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "91a3eded-5095-46b0-8014-f87d6ddc2d3e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "91a3eded-5095-46b0-8014-f87d6ddc2d3e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "91a3eded-5095-46b0-8014-f87d6ddc2d3e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 39.176, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "10bb6280-f1fd-48cf-b9d5-d2acb69fd1b4" + }, + "attachedElementGuid" : { + "value" : "37804f95-0334-4b03-8adb-1f3617be23dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "10bb6280-f1fd-48cf-b9d5-d2acb69fd1b4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "10bb6280-f1fd-48cf-b9d5-d2acb69fd1b4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "10bb6280-f1fd-48cf-b9d5-d2acb69fd1b4" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2b0d1934-446d-455a-a331-e690e3fd38df" + }, + "attachedElementGuid" : { + "value" : "10bb6280-f1fd-48cf-b9d5-d2acb69fd1b4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2b0d1934-446d-455a-a331-e690e3fd38df" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2b0d1934-446d-455a-a331-e690e3fd38df" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "2b0d1934-446d-455a-a331-e690e3fd38df" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "2b0d1934-446d-455a-a331-e690e3fd38df" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 39.352, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b81c925b-ae55-4993-95bb-45267f0ee8bc" + }, + "attachedElementGuid" : { + "value" : "37804f95-0334-4b03-8adb-1f3617be23dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b81c925b-ae55-4993-95bb-45267f0ee8bc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "b81c925b-ae55-4993-95bb-45267f0ee8bc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "b81c925b-ae55-4993-95bb-45267f0ee8bc" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "da457b0e-fb99-45bd-be30-91c4e6127595" + }, + "attachedElementGuid" : { + "value" : "b81c925b-ae55-4993-95bb-45267f0ee8bc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "da457b0e-fb99-45bd-be30-91c4e6127595" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "da457b0e-fb99-45bd-be30-91c4e6127595" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "da457b0e-fb99-45bd-be30-91c4e6127595" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "da457b0e-fb99-45bd-be30-91c4e6127595" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 39.705, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8c9a92f0-c4a2-489c-82df-760302d0cfde" + }, + "attachedElementGuid" : { + "value" : "37804f95-0334-4b03-8adb-1f3617be23dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8c9a92f0-c4a2-489c-82df-760302d0cfde" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "8c9a92f0-c4a2-489c-82df-760302d0cfde" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "8c9a92f0-c4a2-489c-82df-760302d0cfde" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0decd899-2aa8-4cc9-b4b0-826072bb55a9" + }, + "attachedElementGuid" : { + "value" : "8c9a92f0-c4a2-489c-82df-760302d0cfde" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0decd899-2aa8-4cc9-b4b0-826072bb55a9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0decd899-2aa8-4cc9-b4b0-826072bb55a9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0decd899-2aa8-4cc9-b4b0-826072bb55a9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "0decd899-2aa8-4cc9-b4b0-826072bb55a9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 39.882, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c00ae9c7-5520-48cf-b7d3-b300dbea5054" + }, + "attachedElementGuid" : { + "value" : "37804f95-0334-4b03-8adb-1f3617be23dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c00ae9c7-5520-48cf-b7d3-b300dbea5054" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "c00ae9c7-5520-48cf-b7d3-b300dbea5054" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "c00ae9c7-5520-48cf-b7d3-b300dbea5054" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "13237871-6dcc-4a0d-bddb-194753fd53d5" + }, + "attachedElementGuid" : { + "value" : "c00ae9c7-5520-48cf-b7d3-b300dbea5054" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "13237871-6dcc-4a0d-bddb-194753fd53d5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "13237871-6dcc-4a0d-bddb-194753fd53d5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "13237871-6dcc-4a0d-bddb-194753fd53d5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "13237871-6dcc-4a0d-bddb-194753fd53d5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 40.058, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "dd5f224f-03a1-46f9-be6c-2e01119beec3" + }, + "attachedElementGuid" : { + "value" : "37804f95-0334-4b03-8adb-1f3617be23dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "dd5f224f-03a1-46f9-be6c-2e01119beec3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "dd5f224f-03a1-46f9-be6c-2e01119beec3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "dd5f224f-03a1-46f9-be6c-2e01119beec3" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "15ee60c4-36c9-41d9-a486-964028422ff4" + }, + "attachedElementGuid" : { + "value" : "dd5f224f-03a1-46f9-be6c-2e01119beec3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "15ee60c4-36c9-41d9-a486-964028422ff4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "15ee60c4-36c9-41d9-a486-964028422ff4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "15ee60c4-36c9-41d9-a486-964028422ff4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "15ee60c4-36c9-41d9-a486-964028422ff4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 40.588, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b7c19f53-f87b-4e71-a3c0-f2163a542f31" + }, + "attachedElementGuid" : { + "value" : "37804f95-0334-4b03-8adb-1f3617be23dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b7c19f53-f87b-4e71-a3c0-f2163a542f31" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "b7c19f53-f87b-4e71-a3c0-f2163a542f31" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "b7c19f53-f87b-4e71-a3c0-f2163a542f31" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "80d94860-4778-4350-8dd8-308964148620" + }, + "attachedElementGuid" : { + "value" : "b7c19f53-f87b-4e71-a3c0-f2163a542f31" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "80d94860-4778-4350-8dd8-308964148620" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "80d94860-4778-4350-8dd8-308964148620" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "80d94860-4778-4350-8dd8-308964148620" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "80d94860-4778-4350-8dd8-308964148620" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 40.764, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1cc1aa08-8e8b-4c27-b541-ef0a30ec5c7c" + }, + "attachedElementGuid" : { + "value" : "37804f95-0334-4b03-8adb-1f3617be23dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1cc1aa08-8e8b-4c27-b541-ef0a30ec5c7c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "1cc1aa08-8e8b-4c27-b541-ef0a30ec5c7c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "1cc1aa08-8e8b-4c27-b541-ef0a30ec5c7c" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ea935412-c2dc-4964-b331-db68a076b4bb" + }, + "attachedElementGuid" : { + "value" : "1cc1aa08-8e8b-4c27-b541-ef0a30ec5c7c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ea935412-c2dc-4964-b331-db68a076b4bb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ea935412-c2dc-4964-b331-db68a076b4bb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ea935412-c2dc-4964-b331-db68a076b4bb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "ea935412-c2dc-4964-b331-db68a076b4bb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 41.117, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5e54c1c7-808d-4a59-96d5-000edea78b21" + }, + "attachedElementGuid" : { + "value" : "37804f95-0334-4b03-8adb-1f3617be23dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5e54c1c7-808d-4a59-96d5-000edea78b21" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "5e54c1c7-808d-4a59-96d5-000edea78b21" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "5e54c1c7-808d-4a59-96d5-000edea78b21" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7a2815ac-285e-48e1-bf03-5b95b6507385" + }, + "attachedElementGuid" : { + "value" : "5e54c1c7-808d-4a59-96d5-000edea78b21" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7a2815ac-285e-48e1-bf03-5b95b6507385" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7a2815ac-285e-48e1-bf03-5b95b6507385" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "7a2815ac-285e-48e1-bf03-5b95b6507385" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "7a2815ac-285e-48e1-bf03-5b95b6507385" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 41.294, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "81f302be-2d9f-463e-8ff9-04f4e7689cbd" + }, + "attachedElementGuid" : { + "value" : "37804f95-0334-4b03-8adb-1f3617be23dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "81f302be-2d9f-463e-8ff9-04f4e7689cbd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "81f302be-2d9f-463e-8ff9-04f4e7689cbd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "81f302be-2d9f-463e-8ff9-04f4e7689cbd" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a60b8869-cfae-4313-9c5c-ba4426e10968" + }, + "attachedElementGuid" : { + "value" : "81f302be-2d9f-463e-8ff9-04f4e7689cbd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a60b8869-cfae-4313-9c5c-ba4426e10968" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a60b8869-cfae-4313-9c5c-ba4426e10968" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a60b8869-cfae-4313-9c5c-ba4426e10968" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "a60b8869-cfae-4313-9c5c-ba4426e10968" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 41.47, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d8eacb85-693c-4b36-bf67-36cf13290a54" + }, + "attachedElementGuid" : { + "value" : "37804f95-0334-4b03-8adb-1f3617be23dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d8eacb85-693c-4b36-bf67-36cf13290a54" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "d8eacb85-693c-4b36-bf67-36cf13290a54" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "d8eacb85-693c-4b36-bf67-36cf13290a54" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a976895f-5bf0-4e8e-af13-96fee3d4f037" + }, + "attachedElementGuid" : { + "value" : "d8eacb85-693c-4b36-bf67-36cf13290a54" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a976895f-5bf0-4e8e-af13-96fee3d4f037" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a976895f-5bf0-4e8e-af13-96fee3d4f037" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a976895f-5bf0-4e8e-af13-96fee3d4f037" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "a976895f-5bf0-4e8e-af13-96fee3d4f037" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 42, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8a5539e8-3b89-4c82-b80b-ee50d8664656" + }, + "attachedElementGuid" : { + "value" : "37804f95-0334-4b03-8adb-1f3617be23dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8a5539e8-3b89-4c82-b80b-ee50d8664656" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "8a5539e8-3b89-4c82-b80b-ee50d8664656" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "8a5539e8-3b89-4c82-b80b-ee50d8664656" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "273340cf-5334-4d71-a63c-aa08235b603f" + }, + "attachedElementGuid" : { + "value" : "8a5539e8-3b89-4c82-b80b-ee50d8664656" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "273340cf-5334-4d71-a63c-aa08235b603f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "273340cf-5334-4d71-a63c-aa08235b603f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "273340cf-5334-4d71-a63c-aa08235b603f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "273340cf-5334-4d71-a63c-aa08235b603f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 42.176, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "07010589-71b8-4492-9c1c-a31828ca2dc5" + }, + "attachedElementGuid" : { + "value" : "37804f95-0334-4b03-8adb-1f3617be23dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "07010589-71b8-4492-9c1c-a31828ca2dc5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "07010589-71b8-4492-9c1c-a31828ca2dc5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "07010589-71b8-4492-9c1c-a31828ca2dc5" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "051ac741-e3b7-4543-ad76-06e671682fdb" + }, + "attachedElementGuid" : { + "value" : "07010589-71b8-4492-9c1c-a31828ca2dc5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "051ac741-e3b7-4543-ad76-06e671682fdb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "051ac741-e3b7-4543-ad76-06e671682fdb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "051ac741-e3b7-4543-ad76-06e671682fdb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "051ac741-e3b7-4543-ad76-06e671682fdb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 42.529, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "92094bce-19b2-4010-9140-82df3c35698b" + }, + "attachedElementGuid" : { + "value" : "37804f95-0334-4b03-8adb-1f3617be23dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "92094bce-19b2-4010-9140-82df3c35698b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "92094bce-19b2-4010-9140-82df3c35698b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "92094bce-19b2-4010-9140-82df3c35698b" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ee21315d-6684-4d63-886f-e3ad80882df0" + }, + "attachedElementGuid" : { + "value" : "92094bce-19b2-4010-9140-82df3c35698b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ee21315d-6684-4d63-886f-e3ad80882df0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ee21315d-6684-4d63-886f-e3ad80882df0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ee21315d-6684-4d63-886f-e3ad80882df0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "ee21315d-6684-4d63-886f-e3ad80882df0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 42.705, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "20da2644-c612-4a6f-b1d0-1e0b076fbee9" + }, + "attachedElementGuid" : { + "value" : "37804f95-0334-4b03-8adb-1f3617be23dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "20da2644-c612-4a6f-b1d0-1e0b076fbee9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "20da2644-c612-4a6f-b1d0-1e0b076fbee9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "20da2644-c612-4a6f-b1d0-1e0b076fbee9" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "765f8646-d678-4b6d-b6c4-725454b9999d" + }, + "attachedElementGuid" : { + "value" : "20da2644-c612-4a6f-b1d0-1e0b076fbee9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "765f8646-d678-4b6d-b6c4-725454b9999d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "765f8646-d678-4b6d-b6c4-725454b9999d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "765f8646-d678-4b6d-b6c4-725454b9999d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "765f8646-d678-4b6d-b6c4-725454b9999d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 42.882, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1a3ffb60-7ba6-4113-af3b-b3cabde2a2a6" + }, + "attachedElementGuid" : { + "value" : "37804f95-0334-4b03-8adb-1f3617be23dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1a3ffb60-7ba6-4113-af3b-b3cabde2a2a6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "1a3ffb60-7ba6-4113-af3b-b3cabde2a2a6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "1a3ffb60-7ba6-4113-af3b-b3cabde2a2a6" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7ee6b6a1-3a12-4c3b-9afb-24b0325ffeb0" + }, + "attachedElementGuid" : { + "value" : "1a3ffb60-7ba6-4113-af3b-b3cabde2a2a6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7ee6b6a1-3a12-4c3b-9afb-24b0325ffeb0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7ee6b6a1-3a12-4c3b-9afb-24b0325ffeb0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "7ee6b6a1-3a12-4c3b-9afb-24b0325ffeb0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "7ee6b6a1-3a12-4c3b-9afb-24b0325ffeb0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 43.411, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "58de8500-2b36-4fc1-a610-50c5f1bc2b1e" + }, + "attachedElementGuid" : { + "value" : "37804f95-0334-4b03-8adb-1f3617be23dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "58de8500-2b36-4fc1-a610-50c5f1bc2b1e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "58de8500-2b36-4fc1-a610-50c5f1bc2b1e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "58de8500-2b36-4fc1-a610-50c5f1bc2b1e" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "008cbe03-d1d7-4aea-afca-be088d93fc56" + }, + "attachedElementGuid" : { + "value" : "58de8500-2b36-4fc1-a610-50c5f1bc2b1e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "008cbe03-d1d7-4aea-afca-be088d93fc56" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "008cbe03-d1d7-4aea-afca-be088d93fc56" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "008cbe03-d1d7-4aea-afca-be088d93fc56" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "008cbe03-d1d7-4aea-afca-be088d93fc56" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 43.588, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d82c81ab-af4c-4c81-b17e-d6cb911bf0bb" + }, + "attachedElementGuid" : { + "value" : "37804f95-0334-4b03-8adb-1f3617be23dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d82c81ab-af4c-4c81-b17e-d6cb911bf0bb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "d82c81ab-af4c-4c81-b17e-d6cb911bf0bb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "d82c81ab-af4c-4c81-b17e-d6cb911bf0bb" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d0ac20ff-ebaa-4843-b57d-9a8487c9d3f1" + }, + "attachedElementGuid" : { + "value" : "d82c81ab-af4c-4c81-b17e-d6cb911bf0bb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d0ac20ff-ebaa-4843-b57d-9a8487c9d3f1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d0ac20ff-ebaa-4843-b57d-9a8487c9d3f1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d0ac20ff-ebaa-4843-b57d-9a8487c9d3f1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d0ac20ff-ebaa-4843-b57d-9a8487c9d3f1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 43.941, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b5355207-7c41-46b6-ae7b-0ffb870ececf" + }, + "attachedElementGuid" : { + "value" : "37804f95-0334-4b03-8adb-1f3617be23dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b5355207-7c41-46b6-ae7b-0ffb870ececf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "b5355207-7c41-46b6-ae7b-0ffb870ececf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "b5355207-7c41-46b6-ae7b-0ffb870ececf" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b93f9994-25cb-4c01-be24-baf1869d591c" + }, + "attachedElementGuid" : { + "value" : "b5355207-7c41-46b6-ae7b-0ffb870ececf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b93f9994-25cb-4c01-be24-baf1869d591c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b93f9994-25cb-4c01-be24-baf1869d591c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b93f9994-25cb-4c01-be24-baf1869d591c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "b93f9994-25cb-4c01-be24-baf1869d591c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 44.177, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ac179f54-a04f-4cad-9de2-09741d4bf4e5" + }, + "attachedElementGuid" : { + "value" : "37804f95-0334-4b03-8adb-1f3617be23dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ac179f54-a04f-4cad-9de2-09741d4bf4e5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "ac179f54-a04f-4cad-9de2-09741d4bf4e5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "ac179f54-a04f-4cad-9de2-09741d4bf4e5" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "84ea6ef0-9c7b-4f9f-8b76-690601225793" + }, + "attachedElementGuid" : { + "value" : "ac179f54-a04f-4cad-9de2-09741d4bf4e5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "84ea6ef0-9c7b-4f9f-8b76-690601225793" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "84ea6ef0-9c7b-4f9f-8b76-690601225793" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "84ea6ef0-9c7b-4f9f-8b76-690601225793" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "84ea6ef0-9c7b-4f9f-8b76-690601225793" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 44.294, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3dc7e26c-05ff-46cf-a8e7-aecce95691b5" + }, + "attachedElementGuid" : { + "value" : "37804f95-0334-4b03-8adb-1f3617be23dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3dc7e26c-05ff-46cf-a8e7-aecce95691b5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "3dc7e26c-05ff-46cf-a8e7-aecce95691b5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "3dc7e26c-05ff-46cf-a8e7-aecce95691b5" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2df07a95-ca9b-41fb-9a9d-eb5c50283f86" + }, + "attachedElementGuid" : { + "value" : "3dc7e26c-05ff-46cf-a8e7-aecce95691b5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2df07a95-ca9b-41fb-9a9d-eb5c50283f86" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2df07a95-ca9b-41fb-9a9d-eb5c50283f86" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "2df07a95-ca9b-41fb-9a9d-eb5c50283f86" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "2df07a95-ca9b-41fb-9a9d-eb5c50283f86" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 44.823, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fae130c3-3267-46c1-83fd-b02d2a94a8e7" + }, + "attachedElementGuid" : { + "value" : "37804f95-0334-4b03-8adb-1f3617be23dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fae130c3-3267-46c1-83fd-b02d2a94a8e7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "fae130c3-3267-46c1-83fd-b02d2a94a8e7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "fae130c3-3267-46c1-83fd-b02d2a94a8e7" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3ca1adb6-78e2-4a05-81ae-fd363e306dde" + }, + "attachedElementGuid" : { + "value" : "fae130c3-3267-46c1-83fd-b02d2a94a8e7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3ca1adb6-78e2-4a05-81ae-fd363e306dde" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3ca1adb6-78e2-4a05-81ae-fd363e306dde" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3ca1adb6-78e2-4a05-81ae-fd363e306dde" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "3ca1adb6-78e2-4a05-81ae-fd363e306dde" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 45, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ea8f9bc8-ca94-4a59-a913-462747b705e6" + }, + "attachedElementGuid" : { + "value" : "37804f95-0334-4b03-8adb-1f3617be23dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ea8f9bc8-ca94-4a59-a913-462747b705e6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "ea8f9bc8-ca94-4a59-a913-462747b705e6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "ea8f9bc8-ca94-4a59-a913-462747b705e6" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6131cadc-2ae6-4f88-93af-2afcada8e01f" + }, + "attachedElementGuid" : { + "value" : "ea8f9bc8-ca94-4a59-a913-462747b705e6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6131cadc-2ae6-4f88-93af-2afcada8e01f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6131cadc-2ae6-4f88-93af-2afcada8e01f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6131cadc-2ae6-4f88-93af-2afcada8e01f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "6131cadc-2ae6-4f88-93af-2afcada8e01f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 45.352, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "46bc862f-091d-476c-b364-788261cf0875" + }, + "attachedElementGuid" : { + "value" : "37804f95-0334-4b03-8adb-1f3617be23dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "46bc862f-091d-476c-b364-788261cf0875" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "46bc862f-091d-476c-b364-788261cf0875" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "46bc862f-091d-476c-b364-788261cf0875" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "55919cc2-42fd-4c1d-a607-d7d235cb4646" + }, + "attachedElementGuid" : { + "value" : "46bc862f-091d-476c-b364-788261cf0875" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "55919cc2-42fd-4c1d-a607-d7d235cb4646" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "55919cc2-42fd-4c1d-a607-d7d235cb4646" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "55919cc2-42fd-4c1d-a607-d7d235cb4646" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "55919cc2-42fd-4c1d-a607-d7d235cb4646" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 45.529, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2e656ae4-60a7-45dd-9a9f-e26176597ba5" + }, + "attachedElementGuid" : { + "value" : "37804f95-0334-4b03-8adb-1f3617be23dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2e656ae4-60a7-45dd-9a9f-e26176597ba5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "2e656ae4-60a7-45dd-9a9f-e26176597ba5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "2e656ae4-60a7-45dd-9a9f-e26176597ba5" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f8107836-288a-4a83-8038-8e1ac0773080" + }, + "attachedElementGuid" : { + "value" : "2e656ae4-60a7-45dd-9a9f-e26176597ba5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f8107836-288a-4a83-8038-8e1ac0773080" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f8107836-288a-4a83-8038-8e1ac0773080" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f8107836-288a-4a83-8038-8e1ac0773080" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "f8107836-288a-4a83-8038-8e1ac0773080" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 45.705, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c2297d0a-b119-4118-8c3a-e088de2d8e38" + }, + "attachedElementGuid" : { + "value" : "37804f95-0334-4b03-8adb-1f3617be23dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c2297d0a-b119-4118-8c3a-e088de2d8e38" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "c2297d0a-b119-4118-8c3a-e088de2d8e38" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "c2297d0a-b119-4118-8c3a-e088de2d8e38" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "85dd5b34-7dfe-4647-9078-efbc4aaa069b" + }, + "attachedElementGuid" : { + "value" : "c2297d0a-b119-4118-8c3a-e088de2d8e38" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "85dd5b34-7dfe-4647-9078-efbc4aaa069b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "85dd5b34-7dfe-4647-9078-efbc4aaa069b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "85dd5b34-7dfe-4647-9078-efbc4aaa069b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "85dd5b34-7dfe-4647-9078-efbc4aaa069b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 46.235, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bd7f3bb8-af80-47cc-a45f-5b3795562fd9" + }, + "attachedElementGuid" : { + "value" : "37804f95-0334-4b03-8adb-1f3617be23dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bd7f3bb8-af80-47cc-a45f-5b3795562fd9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "bd7f3bb8-af80-47cc-a45f-5b3795562fd9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "bd7f3bb8-af80-47cc-a45f-5b3795562fd9" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "35b6465e-7b8d-49a2-8a1d-76d817fcf6f3" + }, + "attachedElementGuid" : { + "value" : "bd7f3bb8-af80-47cc-a45f-5b3795562fd9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "35b6465e-7b8d-49a2-8a1d-76d817fcf6f3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "35b6465e-7b8d-49a2-8a1d-76d817fcf6f3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "35b6465e-7b8d-49a2-8a1d-76d817fcf6f3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "35b6465e-7b8d-49a2-8a1d-76d817fcf6f3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 46.411, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5e081971-bf23-4ef0-8c68-812a415eac96" + }, + "attachedElementGuid" : { + "value" : "37804f95-0334-4b03-8adb-1f3617be23dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5e081971-bf23-4ef0-8c68-812a415eac96" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "5e081971-bf23-4ef0-8c68-812a415eac96" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "5e081971-bf23-4ef0-8c68-812a415eac96" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2d7e4b42-794b-4383-a3d2-005b0063c234" + }, + "attachedElementGuid" : { + "value" : "5e081971-bf23-4ef0-8c68-812a415eac96" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2d7e4b42-794b-4383-a3d2-005b0063c234" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2d7e4b42-794b-4383-a3d2-005b0063c234" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "2d7e4b42-794b-4383-a3d2-005b0063c234" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "2d7e4b42-794b-4383-a3d2-005b0063c234" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp", + "elementName" : "p4", + "tags" : [ + + ], + "elementGuid" : { + "value" : "19aee64e-a0d0-4cb5-9e81-84b2968b7495" + }, + "attachedElementGuid" : { + "value" : "00000000-0000-0000-0000-000000000000" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "19aee64e-a0d0-4cb5-9e81-84b2968b7495" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "19aee64e-a0d0-4cb5-9e81-84b2968b7495" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp", + "elementName" : "note", + "tags" : [ + + ], + "elementGuid" : { + "value" : "72d33c6a-ff12-4601-8fda-ec4db4f407ef" + }, + "attachedElementGuid" : { + "value" : "19aee64e-a0d0-4cb5-9e81-84b2968b7495" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "72d33c6a-ff12-4601-8fda-ec4db4f407ef" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "72d33c6a-ff12-4601-8fda-ec4db4f407ef" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "New Track", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0731530c-159e-4443-8112-9906fb084a8c" + }, + "attachedElementGuid" : { + "value" : "72d33c6a-ff12-4601-8fda-ec4db4f407ef" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0731530c-159e-4443-8112-9906fb084a8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0731530c-159e-4443-8112-9906fb084a8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 0, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "0731530c-159e-4443-8112-9906fb084a8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 46.588, + "trackEndTime" : 57.882, + "visibleTrackTimeLength" : 10, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "0731530c-159e-4443-8112-9906fb084a8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d74ecb4a-5db1-4663-b99b-f0ca0d5b75d5" + }, + "attachedElementGuid" : { + "value" : "0731530c-159e-4443-8112-9906fb084a8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 3, + "z" : 612 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d74ecb4a-5db1-4663-b99b-f0ca0d5b75d5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d74ecb4a-5db1-4663-b99b-f0ca0d5b75d5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d74ecb4a-5db1-4663-b99b-f0ca0d5b75d5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "26b63e30-8d6b-4432-be58-0913e2cd7605" + }, + "attachedElementGuid" : { + "value" : "0731530c-159e-4443-8112-9906fb084a8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 798 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "26b63e30-8d6b-4432-be58-0913e2cd7605" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "26b63e30-8d6b-4432-be58-0913e2cd7605" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "26b63e30-8d6b-4432-be58-0913e2cd7605" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "48a27e97-a68a-4336-bfe5-b7c0ddae1891" + }, + "attachedElementGuid" : { + "value" : "0731530c-159e-4443-8112-9906fb084a8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "48a27e97-a68a-4336-bfe5-b7c0ddae1891" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 46.588 + },{ + "value" : false, + "time" : 57.882 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bf3456c9-8322-4d27-accc-46456eaabbcb" + }, + "attachedElementGuid" : { + "value" : "48a27e97-a68a-4336-bfe5-b7c0ddae1891" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "bf3456c9-8322-4d27-accc-46456eaabbcb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bf3456c9-8322-4d27-accc-46456eaabbcb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "bf3456c9-8322-4d27-accc-46456eaabbcb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "46.588-56.117", + "tags" : [ + + ], + "elementGuid" : { + "value" : "131c1883-ab48-4792-8c75-5346e29c70d8" + }, + "attachedElementGuid" : { + "value" : "4ee7f15e-c6f6-40e5-b9e8-8e4887afe797" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "131c1883-ab48-4792-8c75-5346e29c70d8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "131c1883-ab48-4792-8c75-5346e29c70d8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 0, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "131c1883-ab48-4792-8c75-5346e29c70d8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 46.588, + "trackEndTime" : 56.117, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "131c1883-ab48-4792-8c75-5346e29c70d8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f256db49-4e24-42d2-b8d3-4d14ebf63846" + }, + "attachedElementGuid" : { + "value" : "131c1883-ab48-4792-8c75-5346e29c70d8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 7, + "z" : 604 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f256db49-4e24-42d2-b8d3-4d14ebf63846" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f256db49-4e24-42d2-b8d3-4d14ebf63846" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f256db49-4e24-42d2-b8d3-4d14ebf63846" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9035eb78-14ab-4ed9-b61d-81e932390c92" + }, + "attachedElementGuid" : { + "value" : "131c1883-ab48-4792-8c75-5346e29c70d8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 7, + "z" : 760 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9035eb78-14ab-4ed9-b61d-81e932390c92" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9035eb78-14ab-4ed9-b61d-81e932390c92" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "9035eb78-14ab-4ed9-b61d-81e932390c92" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 46.588, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "575c3c21-1a96-4cdd-bb3a-e438304a4661" + }, + "attachedElementGuid" : { + "value" : "0731530c-159e-4443-8112-9906fb084a8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "575c3c21-1a96-4cdd-bb3a-e438304a4661" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "575c3c21-1a96-4cdd-bb3a-e438304a4661" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "575c3c21-1a96-4cdd-bb3a-e438304a4661" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fa126c5c-8ece-4aef-ba31-cd5b15ea0d8b" + }, + "attachedElementGuid" : { + "value" : "575c3c21-1a96-4cdd-bb3a-e438304a4661" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "fa126c5c-8ece-4aef-ba31-cd5b15ea0d8b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fa126c5c-8ece-4aef-ba31-cd5b15ea0d8b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "fa126c5c-8ece-4aef-ba31-cd5b15ea0d8b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "fa126c5c-8ece-4aef-ba31-cd5b15ea0d8b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 46.941, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0d906c13-316c-41d6-aff8-2e51364581f4" + }, + "attachedElementGuid" : { + "value" : "0731530c-159e-4443-8112-9906fb084a8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0d906c13-316c-41d6-aff8-2e51364581f4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "0d906c13-316c-41d6-aff8-2e51364581f4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "0d906c13-316c-41d6-aff8-2e51364581f4" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7b59b022-e74f-494a-a3a9-0d91ca1ecfc9" + }, + "attachedElementGuid" : { + "value" : "0d906c13-316c-41d6-aff8-2e51364581f4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7b59b022-e74f-494a-a3a9-0d91ca1ecfc9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7b59b022-e74f-494a-a3a9-0d91ca1ecfc9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "7b59b022-e74f-494a-a3a9-0d91ca1ecfc9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "7b59b022-e74f-494a-a3a9-0d91ca1ecfc9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 47.47, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0ff046f9-256e-4e47-a630-73e31f721bcf" + }, + "attachedElementGuid" : { + "value" : "0731530c-159e-4443-8112-9906fb084a8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0ff046f9-256e-4e47-a630-73e31f721bcf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "0ff046f9-256e-4e47-a630-73e31f721bcf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "0ff046f9-256e-4e47-a630-73e31f721bcf" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4b22631e-69dc-460e-85ce-cb8147b1a310" + }, + "attachedElementGuid" : { + "value" : "0ff046f9-256e-4e47-a630-73e31f721bcf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4b22631e-69dc-460e-85ce-cb8147b1a310" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4b22631e-69dc-460e-85ce-cb8147b1a310" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4b22631e-69dc-460e-85ce-cb8147b1a310" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "4b22631e-69dc-460e-85ce-cb8147b1a310" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 48, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b9f6125d-dcc2-41e0-9f8c-2246801097e2" + }, + "attachedElementGuid" : { + "value" : "0731530c-159e-4443-8112-9906fb084a8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b9f6125d-dcc2-41e0-9f8c-2246801097e2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "b9f6125d-dcc2-41e0-9f8c-2246801097e2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "b9f6125d-dcc2-41e0-9f8c-2246801097e2" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d5a937a6-4fcc-4ede-b824-7f21af9c069e" + }, + "attachedElementGuid" : { + "value" : "b9f6125d-dcc2-41e0-9f8c-2246801097e2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d5a937a6-4fcc-4ede-b824-7f21af9c069e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d5a937a6-4fcc-4ede-b824-7f21af9c069e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d5a937a6-4fcc-4ede-b824-7f21af9c069e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d5a937a6-4fcc-4ede-b824-7f21af9c069e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 48.529, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "01d1252c-82b6-4143-951a-886c9f6e40b3" + }, + "attachedElementGuid" : { + "value" : "0731530c-159e-4443-8112-9906fb084a8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "01d1252c-82b6-4143-951a-886c9f6e40b3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "01d1252c-82b6-4143-951a-886c9f6e40b3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "01d1252c-82b6-4143-951a-886c9f6e40b3" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5d615962-b748-48d0-8d81-650eaecf6527" + }, + "attachedElementGuid" : { + "value" : "01d1252c-82b6-4143-951a-886c9f6e40b3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5d615962-b748-48d0-8d81-650eaecf6527" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5d615962-b748-48d0-8d81-650eaecf6527" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5d615962-b748-48d0-8d81-650eaecf6527" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "5d615962-b748-48d0-8d81-650eaecf6527" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 49.058, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "01321f14-f497-4fcd-9f9d-695861cc1676" + }, + "attachedElementGuid" : { + "value" : "0731530c-159e-4443-8112-9906fb084a8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "01321f14-f497-4fcd-9f9d-695861cc1676" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "01321f14-f497-4fcd-9f9d-695861cc1676" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "01321f14-f497-4fcd-9f9d-695861cc1676" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "139cef96-c2de-422b-a1a7-dadd2fcefb1e" + }, + "attachedElementGuid" : { + "value" : "01321f14-f497-4fcd-9f9d-695861cc1676" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "139cef96-c2de-422b-a1a7-dadd2fcefb1e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "139cef96-c2de-422b-a1a7-dadd2fcefb1e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "139cef96-c2de-422b-a1a7-dadd2fcefb1e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "139cef96-c2de-422b-a1a7-dadd2fcefb1e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 49.764, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a4fa0b4b-c760-409a-af66-f9a7ff94c56d" + }, + "attachedElementGuid" : { + "value" : "0731530c-159e-4443-8112-9906fb084a8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a4fa0b4b-c760-409a-af66-f9a7ff94c56d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "a4fa0b4b-c760-409a-af66-f9a7ff94c56d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "a4fa0b4b-c760-409a-af66-f9a7ff94c56d" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "76c283d4-cc86-47f8-9574-8e761b9a4104" + }, + "attachedElementGuid" : { + "value" : "a4fa0b4b-c760-409a-af66-f9a7ff94c56d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "76c283d4-cc86-47f8-9574-8e761b9a4104" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "76c283d4-cc86-47f8-9574-8e761b9a4104" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "76c283d4-cc86-47f8-9574-8e761b9a4104" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "76c283d4-cc86-47f8-9574-8e761b9a4104" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 50.249, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c18c10f2-49f4-4466-817b-ccb14ca40be6" + }, + "attachedElementGuid" : { + "value" : "0731530c-159e-4443-8112-9906fb084a8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c18c10f2-49f4-4466-817b-ccb14ca40be6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "c18c10f2-49f4-4466-817b-ccb14ca40be6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "c18c10f2-49f4-4466-817b-ccb14ca40be6" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8e6a5a37-a1fd-474c-aa5f-de7da97355f9" + }, + "attachedElementGuid" : { + "value" : "c18c10f2-49f4-4466-817b-ccb14ca40be6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8e6a5a37-a1fd-474c-aa5f-de7da97355f9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8e6a5a37-a1fd-474c-aa5f-de7da97355f9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8e6a5a37-a1fd-474c-aa5f-de7da97355f9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "8e6a5a37-a1fd-474c-aa5f-de7da97355f9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 50.823, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "79f1b587-a693-429d-952c-e3f0dafa9864" + }, + "attachedElementGuid" : { + "value" : "0731530c-159e-4443-8112-9906fb084a8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "79f1b587-a693-429d-952c-e3f0dafa9864" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "79f1b587-a693-429d-952c-e3f0dafa9864" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "79f1b587-a693-429d-952c-e3f0dafa9864" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ff750214-8c92-4122-986d-7dc76102b4a1" + }, + "attachedElementGuid" : { + "value" : "79f1b587-a693-429d-952c-e3f0dafa9864" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ff750214-8c92-4122-986d-7dc76102b4a1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ff750214-8c92-4122-986d-7dc76102b4a1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ff750214-8c92-4122-986d-7dc76102b4a1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "ff750214-8c92-4122-986d-7dc76102b4a1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 51.352, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cf64118c-320e-473d-a90f-8a813511b892" + }, + "attachedElementGuid" : { + "value" : "0731530c-159e-4443-8112-9906fb084a8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "cf64118c-320e-473d-a90f-8a813511b892" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "cf64118c-320e-473d-a90f-8a813511b892" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "cf64118c-320e-473d-a90f-8a813511b892" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e387197d-22a2-4a07-a736-af642af2208b" + }, + "attachedElementGuid" : { + "value" : "cf64118c-320e-473d-a90f-8a813511b892" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e387197d-22a2-4a07-a736-af642af2208b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e387197d-22a2-4a07-a736-af642af2208b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e387197d-22a2-4a07-a736-af642af2208b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "e387197d-22a2-4a07-a736-af642af2208b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 51.882, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "86cb8da4-da19-4099-a5b6-dea09bcbb030" + }, + "attachedElementGuid" : { + "value" : "0731530c-159e-4443-8112-9906fb084a8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "86cb8da4-da19-4099-a5b6-dea09bcbb030" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "86cb8da4-da19-4099-a5b6-dea09bcbb030" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "86cb8da4-da19-4099-a5b6-dea09bcbb030" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d9413042-d788-450c-8a37-ff5b3bd31b9e" + }, + "attachedElementGuid" : { + "value" : "86cb8da4-da19-4099-a5b6-dea09bcbb030" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d9413042-d788-450c-8a37-ff5b3bd31b9e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d9413042-d788-450c-8a37-ff5b3bd31b9e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d9413042-d788-450c-8a37-ff5b3bd31b9e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d9413042-d788-450c-8a37-ff5b3bd31b9e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 52.588, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bfcab9b5-debc-4bc7-8429-846f4128ccac" + }, + "attachedElementGuid" : { + "value" : "0731530c-159e-4443-8112-9906fb084a8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bfcab9b5-debc-4bc7-8429-846f4128ccac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "bfcab9b5-debc-4bc7-8429-846f4128ccac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "bfcab9b5-debc-4bc7-8429-846f4128ccac" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "276ac5b6-dc7d-46aa-888c-bf059150b5c4" + }, + "attachedElementGuid" : { + "value" : "bfcab9b5-debc-4bc7-8429-846f4128ccac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "276ac5b6-dc7d-46aa-888c-bf059150b5c4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "276ac5b6-dc7d-46aa-888c-bf059150b5c4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "276ac5b6-dc7d-46aa-888c-bf059150b5c4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "276ac5b6-dc7d-46aa-888c-bf059150b5c4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 53.117, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2e4278e0-ff8c-4835-8518-891c841fea2b" + }, + "attachedElementGuid" : { + "value" : "0731530c-159e-4443-8112-9906fb084a8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2e4278e0-ff8c-4835-8518-891c841fea2b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "2e4278e0-ff8c-4835-8518-891c841fea2b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "2e4278e0-ff8c-4835-8518-891c841fea2b" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a437a998-c138-4c17-a18f-cdbf4a05ad3b" + }, + "attachedElementGuid" : { + "value" : "2e4278e0-ff8c-4835-8518-891c841fea2b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a437a998-c138-4c17-a18f-cdbf4a05ad3b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a437a998-c138-4c17-a18f-cdbf4a05ad3b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a437a998-c138-4c17-a18f-cdbf4a05ad3b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "a437a998-c138-4c17-a18f-cdbf4a05ad3b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 53.647, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e2ad7f1c-cdc8-45ce-808f-ceb64a4ff5fd" + }, + "attachedElementGuid" : { + "value" : "0731530c-159e-4443-8112-9906fb084a8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e2ad7f1c-cdc8-45ce-808f-ceb64a4ff5fd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "e2ad7f1c-cdc8-45ce-808f-ceb64a4ff5fd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "e2ad7f1c-cdc8-45ce-808f-ceb64a4ff5fd" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c1bdc275-f2c1-42b2-b313-16f2f83f5e25" + }, + "attachedElementGuid" : { + "value" : "e2ad7f1c-cdc8-45ce-808f-ceb64a4ff5fd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c1bdc275-f2c1-42b2-b313-16f2f83f5e25" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c1bdc275-f2c1-42b2-b313-16f2f83f5e25" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c1bdc275-f2c1-42b2-b313-16f2f83f5e25" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "c1bdc275-f2c1-42b2-b313-16f2f83f5e25" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 54.176, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b86435cb-373b-4b6a-9e03-9a8546dbac3b" + }, + "attachedElementGuid" : { + "value" : "0731530c-159e-4443-8112-9906fb084a8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b86435cb-373b-4b6a-9e03-9a8546dbac3b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "b86435cb-373b-4b6a-9e03-9a8546dbac3b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "b86435cb-373b-4b6a-9e03-9a8546dbac3b" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d4a5600a-3f40-42d2-8713-44ed9d2b64b1" + }, + "attachedElementGuid" : { + "value" : "b86435cb-373b-4b6a-9e03-9a8546dbac3b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d4a5600a-3f40-42d2-8713-44ed9d2b64b1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d4a5600a-3f40-42d2-8713-44ed9d2b64b1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d4a5600a-3f40-42d2-8713-44ed9d2b64b1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d4a5600a-3f40-42d2-8713-44ed9d2b64b1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 54.705, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8aff6e65-570a-4cdf-aa00-155e506a68ce" + }, + "attachedElementGuid" : { + "value" : "0731530c-159e-4443-8112-9906fb084a8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8aff6e65-570a-4cdf-aa00-155e506a68ce" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "8aff6e65-570a-4cdf-aa00-155e506a68ce" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "8aff6e65-570a-4cdf-aa00-155e506a68ce" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3a8387e3-109e-4bef-aed6-5a5ee42e41b5" + }, + "attachedElementGuid" : { + "value" : "8aff6e65-570a-4cdf-aa00-155e506a68ce" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3a8387e3-109e-4bef-aed6-5a5ee42e41b5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3a8387e3-109e-4bef-aed6-5a5ee42e41b5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3a8387e3-109e-4bef-aed6-5a5ee42e41b5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "3a8387e3-109e-4bef-aed6-5a5ee42e41b5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 55.411, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f4eeca07-b750-4166-81d4-64e739e6ce32" + }, + "attachedElementGuid" : { + "value" : "0731530c-159e-4443-8112-9906fb084a8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f4eeca07-b750-4166-81d4-64e739e6ce32" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "f4eeca07-b750-4166-81d4-64e739e6ce32" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "f4eeca07-b750-4166-81d4-64e739e6ce32" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b4d95a11-0c6a-401d-a7cd-980fabfd883d" + }, + "attachedElementGuid" : { + "value" : "f4eeca07-b750-4166-81d4-64e739e6ce32" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b4d95a11-0c6a-401d-a7cd-980fabfd883d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b4d95a11-0c6a-401d-a7cd-980fabfd883d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b4d95a11-0c6a-401d-a7cd-980fabfd883d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "b4d95a11-0c6a-401d-a7cd-980fabfd883d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 55.941, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "38d0feb2-2c7f-4ce0-abbe-8af8b311e028" + }, + "attachedElementGuid" : { + "value" : "0731530c-159e-4443-8112-9906fb084a8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "38d0feb2-2c7f-4ce0-abbe-8af8b311e028" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "38d0feb2-2c7f-4ce0-abbe-8af8b311e028" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "38d0feb2-2c7f-4ce0-abbe-8af8b311e028" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "36d8c066-7a15-4e5b-ae5c-73e031d5392d" + }, + "attachedElementGuid" : { + "value" : "38d0feb2-2c7f-4ce0-abbe-8af8b311e028" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "36d8c066-7a15-4e5b-ae5c-73e031d5392d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "36d8c066-7a15-4e5b-ae5c-73e031d5392d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "36d8c066-7a15-4e5b-ae5c-73e031d5392d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "36d8c066-7a15-4e5b-ae5c-73e031d5392d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 56.47, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3ac2f6b1-2e9c-40c8-babb-57e807ca5528" + }, + "attachedElementGuid" : { + "value" : "0731530c-159e-4443-8112-9906fb084a8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3ac2f6b1-2e9c-40c8-babb-57e807ca5528" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "3ac2f6b1-2e9c-40c8-babb-57e807ca5528" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "3ac2f6b1-2e9c-40c8-babb-57e807ca5528" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6ecd593d-a1f1-4243-96a1-c0fad044de20" + }, + "attachedElementGuid" : { + "value" : "3ac2f6b1-2e9c-40c8-babb-57e807ca5528" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6ecd593d-a1f1-4243-96a1-c0fad044de20" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6ecd593d-a1f1-4243-96a1-c0fad044de20" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6ecd593d-a1f1-4243-96a1-c0fad044de20" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "6ecd593d-a1f1-4243-96a1-c0fad044de20" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 57, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9fd464d3-510f-472e-9c09-c6bd9fcebe72" + }, + "attachedElementGuid" : { + "value" : "0731530c-159e-4443-8112-9906fb084a8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9fd464d3-510f-472e-9c09-c6bd9fcebe72" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "9fd464d3-510f-472e-9c09-c6bd9fcebe72" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "9fd464d3-510f-472e-9c09-c6bd9fcebe72" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a3e93da9-e538-4c2d-9cbc-fa565f2df582" + }, + "attachedElementGuid" : { + "value" : "9fd464d3-510f-472e-9c09-c6bd9fcebe72" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a3e93da9-e538-4c2d-9cbc-fa565f2df582" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a3e93da9-e538-4c2d-9cbc-fa565f2df582" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a3e93da9-e538-4c2d-9cbc-fa565f2df582" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "a3e93da9-e538-4c2d-9cbc-fa565f2df582" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 57.529, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ab640883-ce20-4176-9e56-489b6043bcb4" + }, + "attachedElementGuid" : { + "value" : "0731530c-159e-4443-8112-9906fb084a8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ab640883-ce20-4176-9e56-489b6043bcb4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "ab640883-ce20-4176-9e56-489b6043bcb4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "ab640883-ce20-4176-9e56-489b6043bcb4" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7e741df1-8615-43dd-9594-737b0396a5ff" + }, + "attachedElementGuid" : { + "value" : "ab640883-ce20-4176-9e56-489b6043bcb4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7e741df1-8615-43dd-9594-737b0396a5ff" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7e741df1-8615-43dd-9594-737b0396a5ff" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "7e741df1-8615-43dd-9594-737b0396a5ff" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "7e741df1-8615-43dd-9594-737b0396a5ff" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 57.882, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f6df99ab-45cb-401f-9fc5-dc66d86fb3d8" + }, + "attachedElementGuid" : { + "value" : "0731530c-159e-4443-8112-9906fb084a8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f6df99ab-45cb-401f-9fc5-dc66d86fb3d8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "f6df99ab-45cb-401f-9fc5-dc66d86fb3d8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "f6df99ab-45cb-401f-9fc5-dc66d86fb3d8" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a349e643-a4da-41e6-a6c3-72f0d0fcd496" + }, + "attachedElementGuid" : { + "value" : "f6df99ab-45cb-401f-9fc5-dc66d86fb3d8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a349e643-a4da-41e6-a6c3-72f0d0fcd496" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a349e643-a4da-41e6-a6c3-72f0d0fcd496" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a349e643-a4da-41e6-a6c3-72f0d0fcd496" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "a349e643-a4da-41e6-a6c3-72f0d0fcd496" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "New Track", + "tags" : [ + + ], + "elementGuid" : { + "value" : "75a377ed-31b0-4fbd-ba4c-e32f04bc8125" + }, + "attachedElementGuid" : { + "value" : "72d33c6a-ff12-4601-8fda-ec4db4f407ef" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "75a377ed-31b0-4fbd-ba4c-e32f04bc8125" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "75a377ed-31b0-4fbd-ba4c-e32f04bc8125" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 1, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "75a377ed-31b0-4fbd-ba4c-e32f04bc8125" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 46.588, + "trackEndTime" : 49.411, + "visibleTrackTimeLength" : 10, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "75a377ed-31b0-4fbd-ba4c-e32f04bc8125" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f386a67e-e909-4dd9-b420-f6532549b72b" + }, + "attachedElementGuid" : { + "value" : "75a377ed-31b0-4fbd-ba4c-e32f04bc8125" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -10, + "y" : 10, + "z" : 612 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f386a67e-e909-4dd9-b420-f6532549b72b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f386a67e-e909-4dd9-b420-f6532549b72b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f386a67e-e909-4dd9-b420-f6532549b72b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4ba4ac64-b430-4887-ab69-6c3ddd30ac64" + }, + "attachedElementGuid" : { + "value" : "75a377ed-31b0-4fbd-ba4c-e32f04bc8125" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 624 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4ba4ac64-b430-4887-ab69-6c3ddd30ac64" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4ba4ac64-b430-4887-ab69-6c3ddd30ac64" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4ba4ac64-b430-4887-ab69-6c3ddd30ac64" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "333e101f-c971-44a5-b3c5-08adeebd3895" + }, + "attachedElementGuid" : { + "value" : "75a377ed-31b0-4fbd-ba4c-e32f04bc8125" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 12, + "y" : 0, + "z" : 636 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "333e101f-c971-44a5-b3c5-08adeebd3895" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "333e101f-c971-44a5-b3c5-08adeebd3895" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "333e101f-c971-44a5-b3c5-08adeebd3895" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6fa9b048-ab0c-47eb-9187-6aee84138dc9" + }, + "attachedElementGuid" : { + "value" : "75a377ed-31b0-4fbd-ba4c-e32f04bc8125" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 648 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6fa9b048-ab0c-47eb-9187-6aee84138dc9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6fa9b048-ab0c-47eb-9187-6aee84138dc9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6fa9b048-ab0c-47eb-9187-6aee84138dc9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3e7f2c01-6845-4fe1-aabf-27675040709f" + }, + "attachedElementGuid" : { + "value" : "75a377ed-31b0-4fbd-ba4c-e32f04bc8125" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -6, + "y" : 0, + "z" : 660 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3e7f2c01-6845-4fe1-aabf-27675040709f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3e7f2c01-6845-4fe1-aabf-27675040709f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3e7f2c01-6845-4fe1-aabf-27675040709f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "eb767993-df9b-4deb-83f3-2bbb6f0e1f43" + }, + "attachedElementGuid" : { + "value" : "75a377ed-31b0-4fbd-ba4c-e32f04bc8125" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "eb767993-df9b-4deb-83f3-2bbb6f0e1f43" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 46.588 + },{ + "value" : false, + "time" : 49.411 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "07e709c3-d8ec-4111-bf2b-1807040c2bd8" + }, + "attachedElementGuid" : { + "value" : "eb767993-df9b-4deb-83f3-2bbb6f0e1f43" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "07e709c3-d8ec-4111-bf2b-1807040c2bd8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "07e709c3-d8ec-4111-bf2b-1807040c2bd8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "07e709c3-d8ec-4111-bf2b-1807040c2bd8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.BaseColorChange_BM,Assembly-CSharp", + "colorR" : { + "animatedFloatList" : [ + { + "startValue" : 0.5, + "endValue" : 0.5, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorG" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorB" : { + "animatedFloatList" : [ + { + "startValue" : 0.5, + "endValue" : 0.5, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorA" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + },{ + "startValue" : 1, + "endValue" : 0.15, + "startTime" : 47.647, + "endTime" : 48.705, + "animationCurveType" : 11 + },{ + "startValue" : 1, + "endValue" : 1, + "startTime" : 48.705, + "endTime" : 49.235, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 0, + "startTime" : 49.235, + "endTime" : 50, + "animationCurveType" : 0 + } + ] + }, + "elementName" : "New Base Color Change", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bd715cce-7070-4251-bb1b-0360971c266f" + }, + "attachedElementGuid" : { + "value" : "07e709c3-d8ec-4111-bf2b-1807040c2bd8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bd715cce-7070-4251-bb1b-0360971c266f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 47.117, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "743be092-24ec-44c5-a682-42e6b8a7fc8c" + }, + "attachedElementGuid" : { + "value" : "75a377ed-31b0-4fbd-ba4c-e32f04bc8125" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "743be092-24ec-44c5-a682-42e6b8a7fc8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "743be092-24ec-44c5-a682-42e6b8a7fc8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "743be092-24ec-44c5-a682-42e6b8a7fc8c" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "630bd87a-f603-4467-bd92-1075b2df4045" + }, + "attachedElementGuid" : { + "value" : "743be092-24ec-44c5-a682-42e6b8a7fc8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "630bd87a-f603-4467-bd92-1075b2df4045" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "630bd87a-f603-4467-bd92-1075b2df4045" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "630bd87a-f603-4467-bd92-1075b2df4045" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "630bd87a-f603-4467-bd92-1075b2df4045" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 47.647, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e942dd11-344e-48d3-ab01-6e2415e561b7" + }, + "attachedElementGuid" : { + "value" : "75a377ed-31b0-4fbd-ba4c-e32f04bc8125" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e942dd11-344e-48d3-ab01-6e2415e561b7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "e942dd11-344e-48d3-ab01-6e2415e561b7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "e942dd11-344e-48d3-ab01-6e2415e561b7" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "865ec3ab-e7ce-469b-8bf3-308f7b5fcb68" + }, + "attachedElementGuid" : { + "value" : "e942dd11-344e-48d3-ab01-6e2415e561b7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "865ec3ab-e7ce-469b-8bf3-308f7b5fcb68" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "865ec3ab-e7ce-469b-8bf3-308f7b5fcb68" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "865ec3ab-e7ce-469b-8bf3-308f7b5fcb68" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "865ec3ab-e7ce-469b-8bf3-308f7b5fcb68" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 48.705, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "94768dc4-89ea-4f55-a5ff-b6f64e9d94b0" + }, + "attachedElementGuid" : { + "value" : "75a377ed-31b0-4fbd-ba4c-e32f04bc8125" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "94768dc4-89ea-4f55-a5ff-b6f64e9d94b0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "94768dc4-89ea-4f55-a5ff-b6f64e9d94b0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "94768dc4-89ea-4f55-a5ff-b6f64e9d94b0" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "40d06cf7-ced3-40e8-aca6-c0633bac4029" + }, + "attachedElementGuid" : { + "value" : "94768dc4-89ea-4f55-a5ff-b6f64e9d94b0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "40d06cf7-ced3-40e8-aca6-c0633bac4029" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "40d06cf7-ced3-40e8-aca6-c0633bac4029" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "40d06cf7-ced3-40e8-aca6-c0633bac4029" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "40d06cf7-ced3-40e8-aca6-c0633bac4029" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 49.235, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9d09330f-e798-4263-b67a-02902aa08f81" + }, + "attachedElementGuid" : { + "value" : "75a377ed-31b0-4fbd-ba4c-e32f04bc8125" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9d09330f-e798-4263-b67a-02902aa08f81" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "9d09330f-e798-4263-b67a-02902aa08f81" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "9d09330f-e798-4263-b67a-02902aa08f81" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "84475852-a7b7-4115-a62e-521c339c615c" + }, + "attachedElementGuid" : { + "value" : "9d09330f-e798-4263-b67a-02902aa08f81" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "84475852-a7b7-4115-a62e-521c339c615c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "84475852-a7b7-4115-a62e-521c339c615c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "84475852-a7b7-4115-a62e-521c339c615c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "84475852-a7b7-4115-a62e-521c339c615c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "New Track", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7f96b0f3-9276-4a66-9f75-f908e647cc08" + }, + "attachedElementGuid" : { + "value" : "72d33c6a-ff12-4601-8fda-ec4db4f407ef" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7f96b0f3-9276-4a66-9f75-f908e647cc08" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7f96b0f3-9276-4a66-9f75-f908e647cc08" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 1, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "7f96b0f3-9276-4a66-9f75-f908e647cc08" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 49.411, + "trackEndTime" : 52.235, + "visibleTrackTimeLength" : 10, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "7f96b0f3-9276-4a66-9f75-f908e647cc08" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "91d4a3cb-2ac5-4a29-91c9-da29fcd03dd1" + }, + "attachedElementGuid" : { + "value" : "7f96b0f3-9276-4a66-9f75-f908e647cc08" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 20, + "y" : -10, + "z" : 660 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "91d4a3cb-2ac5-4a29-91c9-da29fcd03dd1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "91d4a3cb-2ac5-4a29-91c9-da29fcd03dd1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "91d4a3cb-2ac5-4a29-91c9-da29fcd03dd1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1aa0d713-00d7-487b-b9bb-944506ffa706" + }, + "attachedElementGuid" : { + "value" : "7f96b0f3-9276-4a66-9f75-f908e647cc08" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -4, + "y" : 10, + "z" : 672 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "1aa0d713-00d7-487b-b9bb-944506ffa706" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1aa0d713-00d7-487b-b9bb-944506ffa706" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "1aa0d713-00d7-487b-b9bb-944506ffa706" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "50bc02c2-8d34-4a2c-932f-d90ee9a25bd8" + }, + "attachedElementGuid" : { + "value" : "7f96b0f3-9276-4a66-9f75-f908e647cc08" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -6, + "y" : 6, + "z" : 684 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "50bc02c2-8d34-4a2c-932f-d90ee9a25bd8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "50bc02c2-8d34-4a2c-932f-d90ee9a25bd8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "50bc02c2-8d34-4a2c-932f-d90ee9a25bd8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fc172755-aef7-4425-a219-a8df475e5bcb" + }, + "attachedElementGuid" : { + "value" : "7f96b0f3-9276-4a66-9f75-f908e647cc08" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -4, + "y" : -4, + "z" : 696 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "fc172755-aef7-4425-a219-a8df475e5bcb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fc172755-aef7-4425-a219-a8df475e5bcb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "fc172755-aef7-4425-a219-a8df475e5bcb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "52b7d1f3-b670-4538-a910-97c684cf2b8f" + }, + "attachedElementGuid" : { + "value" : "7f96b0f3-9276-4a66-9f75-f908e647cc08" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 6, + "y" : 0, + "z" : 708 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "52b7d1f3-b670-4538-a910-97c684cf2b8f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "52b7d1f3-b670-4538-a910-97c684cf2b8f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "52b7d1f3-b670-4538-a910-97c684cf2b8f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b1d3f82e-22d1-4a5f-aedc-c522cfefb31f" + }, + "attachedElementGuid" : { + "value" : "7f96b0f3-9276-4a66-9f75-f908e647cc08" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b1d3f82e-22d1-4a5f-aedc-c522cfefb31f" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 49.411 + },{ + "value" : false, + "time" : 52.235 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b9be3c66-f2e1-4d4d-afde-638d65bae3b8" + }, + "attachedElementGuid" : { + "value" : "b1d3f82e-22d1-4a5f-aedc-c522cfefb31f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b9be3c66-f2e1-4d4d-afde-638d65bae3b8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b9be3c66-f2e1-4d4d-afde-638d65bae3b8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "b9be3c66-f2e1-4d4d-afde-638d65bae3b8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.BaseColorChange_BM,Assembly-CSharp", + "colorR" : { + "animatedFloatList" : [ + { + "startValue" : 0.5, + "endValue" : 0.5, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorG" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorB" : { + "animatedFloatList" : [ + { + "startValue" : 0.5, + "endValue" : 0.5, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorA" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + },{ + "startValue" : 1, + "endValue" : 0.15, + "startTime" : 50.47, + "endTime" : 51.529, + "animationCurveType" : 11 + },{ + "startValue" : 1, + "endValue" : 1, + "startTime" : 51.529, + "endTime" : 52.058, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 0, + "startTime" : 52.058, + "endTime" : 53, + "animationCurveType" : 0 + } + ] + }, + "elementName" : "New Base Color Change", + "tags" : [ + + ], + "elementGuid" : { + "value" : "16b445bc-e232-4951-b1a2-c15c43b23ae1" + }, + "attachedElementGuid" : { + "value" : "b9be3c66-f2e1-4d4d-afde-638d65bae3b8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "16b445bc-e232-4951-b1a2-c15c43b23ae1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 49.941, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "014aa6b0-9c85-4352-8be4-7ed3b41e8247" + }, + "attachedElementGuid" : { + "value" : "7f96b0f3-9276-4a66-9f75-f908e647cc08" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "014aa6b0-9c85-4352-8be4-7ed3b41e8247" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "014aa6b0-9c85-4352-8be4-7ed3b41e8247" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "014aa6b0-9c85-4352-8be4-7ed3b41e8247" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "715a83e8-7620-4b5f-aa45-f0cb43aae59e" + }, + "attachedElementGuid" : { + "value" : "014aa6b0-9c85-4352-8be4-7ed3b41e8247" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "715a83e8-7620-4b5f-aa45-f0cb43aae59e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "715a83e8-7620-4b5f-aa45-f0cb43aae59e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "715a83e8-7620-4b5f-aa45-f0cb43aae59e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "715a83e8-7620-4b5f-aa45-f0cb43aae59e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 50.47, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "02f25fad-5f29-4788-aa22-0d04f45601f4" + }, + "attachedElementGuid" : { + "value" : "7f96b0f3-9276-4a66-9f75-f908e647cc08" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "02f25fad-5f29-4788-aa22-0d04f45601f4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "02f25fad-5f29-4788-aa22-0d04f45601f4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "02f25fad-5f29-4788-aa22-0d04f45601f4" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5bd02261-4a17-4f23-8596-9a16201e8afc" + }, + "attachedElementGuid" : { + "value" : "02f25fad-5f29-4788-aa22-0d04f45601f4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5bd02261-4a17-4f23-8596-9a16201e8afc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5bd02261-4a17-4f23-8596-9a16201e8afc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5bd02261-4a17-4f23-8596-9a16201e8afc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "5bd02261-4a17-4f23-8596-9a16201e8afc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 51.529, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "abdda2ba-c8e6-439b-96db-7ccc2750acd4" + }, + "attachedElementGuid" : { + "value" : "7f96b0f3-9276-4a66-9f75-f908e647cc08" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "abdda2ba-c8e6-439b-96db-7ccc2750acd4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "abdda2ba-c8e6-439b-96db-7ccc2750acd4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "abdda2ba-c8e6-439b-96db-7ccc2750acd4" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f7dc3b10-cf17-4c7f-ae5b-0b42176b9303" + }, + "attachedElementGuid" : { + "value" : "abdda2ba-c8e6-439b-96db-7ccc2750acd4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f7dc3b10-cf17-4c7f-ae5b-0b42176b9303" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f7dc3b10-cf17-4c7f-ae5b-0b42176b9303" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f7dc3b10-cf17-4c7f-ae5b-0b42176b9303" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "f7dc3b10-cf17-4c7f-ae5b-0b42176b9303" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 52.058, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c7487c8d-2c69-471e-ae7a-ae1d352466e5" + }, + "attachedElementGuid" : { + "value" : "7f96b0f3-9276-4a66-9f75-f908e647cc08" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c7487c8d-2c69-471e-ae7a-ae1d352466e5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "c7487c8d-2c69-471e-ae7a-ae1d352466e5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "c7487c8d-2c69-471e-ae7a-ae1d352466e5" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4feb3ab8-644a-4760-8ad3-bcfd979679b0" + }, + "attachedElementGuid" : { + "value" : "c7487c8d-2c69-471e-ae7a-ae1d352466e5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4feb3ab8-644a-4760-8ad3-bcfd979679b0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4feb3ab8-644a-4760-8ad3-bcfd979679b0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4feb3ab8-644a-4760-8ad3-bcfd979679b0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "4feb3ab8-644a-4760-8ad3-bcfd979679b0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "New Track", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8245b706-c479-4b7b-a4b4-32dee8dac331" + }, + "attachedElementGuid" : { + "value" : "72d33c6a-ff12-4601-8fda-ec4db4f407ef" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8245b706-c479-4b7b-a4b4-32dee8dac331" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8245b706-c479-4b7b-a4b4-32dee8dac331" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 1, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "8245b706-c479-4b7b-a4b4-32dee8dac331" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 52.235, + "trackEndTime" : 55.058, + "visibleTrackTimeLength" : 10, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "8245b706-c479-4b7b-a4b4-32dee8dac331" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bdfba6ac-9305-4f5a-bfbe-b9e13770e575" + }, + "attachedElementGuid" : { + "value" : "8245b706-c479-4b7b-a4b4-32dee8dac331" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 20, + "y" : 10, + "z" : 708 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "bdfba6ac-9305-4f5a-bfbe-b9e13770e575" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bdfba6ac-9305-4f5a-bfbe-b9e13770e575" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "bdfba6ac-9305-4f5a-bfbe-b9e13770e575" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2f1f9564-25cc-4012-acf1-6b9168ed0701" + }, + "attachedElementGuid" : { + "value" : "8245b706-c479-4b7b-a4b4-32dee8dac331" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -4, + "y" : 0, + "z" : 720 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2f1f9564-25cc-4012-acf1-6b9168ed0701" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2f1f9564-25cc-4012-acf1-6b9168ed0701" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "2f1f9564-25cc-4012-acf1-6b9168ed0701" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "17fec3fe-115b-48b6-9405-e4f6a181e81b" + }, + "attachedElementGuid" : { + "value" : "8245b706-c479-4b7b-a4b4-32dee8dac331" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -6, + "y" : 0, + "z" : 732 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "17fec3fe-115b-48b6-9405-e4f6a181e81b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "17fec3fe-115b-48b6-9405-e4f6a181e81b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "17fec3fe-115b-48b6-9405-e4f6a181e81b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "89970d71-56f0-435e-8392-ed8b6b8debb6" + }, + "attachedElementGuid" : { + "value" : "8245b706-c479-4b7b-a4b4-32dee8dac331" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -4, + "y" : -4, + "z" : 744 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "89970d71-56f0-435e-8392-ed8b6b8debb6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "89970d71-56f0-435e-8392-ed8b6b8debb6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "89970d71-56f0-435e-8392-ed8b6b8debb6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "155d05cd-0c96-4453-9468-fd86148f59dc" + }, + "attachedElementGuid" : { + "value" : "8245b706-c479-4b7b-a4b4-32dee8dac331" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 10, + "y" : 4, + "z" : 756 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "155d05cd-0c96-4453-9468-fd86148f59dc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "155d05cd-0c96-4453-9468-fd86148f59dc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "155d05cd-0c96-4453-9468-fd86148f59dc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c1606867-bd2d-497f-bd7b-99da59dbfa53" + }, + "attachedElementGuid" : { + "value" : "8245b706-c479-4b7b-a4b4-32dee8dac331" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c1606867-bd2d-497f-bd7b-99da59dbfa53" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 52.235 + },{ + "value" : false, + "time" : 55.058 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e78f2a93-6341-472b-a13d-4ca8a40e0444" + }, + "attachedElementGuid" : { + "value" : "c1606867-bd2d-497f-bd7b-99da59dbfa53" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e78f2a93-6341-472b-a13d-4ca8a40e0444" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e78f2a93-6341-472b-a13d-4ca8a40e0444" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "e78f2a93-6341-472b-a13d-4ca8a40e0444" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.BaseColorChange_BM,Assembly-CSharp", + "colorR" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 0, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorG" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorB" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorA" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + },{ + "startValue" : 1, + "endValue" : 0.15, + "startTime" : 53.294, + "endTime" : 54.352, + "animationCurveType" : 11 + },{ + "startValue" : 1, + "endValue" : 1, + "startTime" : 54.352, + "endTime" : 54.882, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 0, + "startTime" : 54.882, + "endTime" : 55, + "animationCurveType" : 0 + } + ] + }, + "elementName" : "New Base Color Change", + "tags" : [ + + ], + "elementGuid" : { + "value" : "24a590de-7c97-4724-9b11-73f0ae7e776b" + }, + "attachedElementGuid" : { + "value" : "e78f2a93-6341-472b-a13d-4ca8a40e0444" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "24a590de-7c97-4724-9b11-73f0ae7e776b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 52.764, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "358f2d7c-5d51-4d36-9b8e-ee3293563c74" + }, + "attachedElementGuid" : { + "value" : "8245b706-c479-4b7b-a4b4-32dee8dac331" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "358f2d7c-5d51-4d36-9b8e-ee3293563c74" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "358f2d7c-5d51-4d36-9b8e-ee3293563c74" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "358f2d7c-5d51-4d36-9b8e-ee3293563c74" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "57670ba3-a241-45fd-8a73-71329f384e3e" + }, + "attachedElementGuid" : { + "value" : "358f2d7c-5d51-4d36-9b8e-ee3293563c74" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "57670ba3-a241-45fd-8a73-71329f384e3e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "57670ba3-a241-45fd-8a73-71329f384e3e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "57670ba3-a241-45fd-8a73-71329f384e3e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "57670ba3-a241-45fd-8a73-71329f384e3e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 53.294, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "373324c6-7413-4f8b-b98a-3aa077e64de4" + }, + "attachedElementGuid" : { + "value" : "8245b706-c479-4b7b-a4b4-32dee8dac331" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "373324c6-7413-4f8b-b98a-3aa077e64de4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "373324c6-7413-4f8b-b98a-3aa077e64de4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "373324c6-7413-4f8b-b98a-3aa077e64de4" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f1080d32-9ff7-40de-a1f7-5b035324aea8" + }, + "attachedElementGuid" : { + "value" : "373324c6-7413-4f8b-b98a-3aa077e64de4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f1080d32-9ff7-40de-a1f7-5b035324aea8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f1080d32-9ff7-40de-a1f7-5b035324aea8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f1080d32-9ff7-40de-a1f7-5b035324aea8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "f1080d32-9ff7-40de-a1f7-5b035324aea8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 54.352, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d8459014-8980-4b1c-8af8-bdfaaf93cc4e" + }, + "attachedElementGuid" : { + "value" : "8245b706-c479-4b7b-a4b4-32dee8dac331" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d8459014-8980-4b1c-8af8-bdfaaf93cc4e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "d8459014-8980-4b1c-8af8-bdfaaf93cc4e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "d8459014-8980-4b1c-8af8-bdfaaf93cc4e" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8d283dc4-3288-49b8-b7cc-3c91481b0fa0" + }, + "attachedElementGuid" : { + "value" : "d8459014-8980-4b1c-8af8-bdfaaf93cc4e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8d283dc4-3288-49b8-b7cc-3c91481b0fa0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8d283dc4-3288-49b8-b7cc-3c91481b0fa0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8d283dc4-3288-49b8-b7cc-3c91481b0fa0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "8d283dc4-3288-49b8-b7cc-3c91481b0fa0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 54.882, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c6fdfdc1-2592-412b-9034-b5fc0db41fa9" + }, + "attachedElementGuid" : { + "value" : "8245b706-c479-4b7b-a4b4-32dee8dac331" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c6fdfdc1-2592-412b-9034-b5fc0db41fa9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "c6fdfdc1-2592-412b-9034-b5fc0db41fa9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "c6fdfdc1-2592-412b-9034-b5fc0db41fa9" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "552894b7-a55d-4af9-9ece-b98bdfee1b5b" + }, + "attachedElementGuid" : { + "value" : "c6fdfdc1-2592-412b-9034-b5fc0db41fa9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "552894b7-a55d-4af9-9ece-b98bdfee1b5b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "552894b7-a55d-4af9-9ece-b98bdfee1b5b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "552894b7-a55d-4af9-9ece-b98bdfee1b5b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "552894b7-a55d-4af9-9ece-b98bdfee1b5b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "New Track", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6a5fa80d-5add-4633-aebc-20478d75b8dd" + }, + "attachedElementGuid" : { + "value" : "72d33c6a-ff12-4601-8fda-ec4db4f407ef" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6a5fa80d-5add-4633-aebc-20478d75b8dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6a5fa80d-5add-4633-aebc-20478d75b8dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 1, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "6a5fa80d-5add-4633-aebc-20478d75b8dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 55.058, + "trackEndTime" : 57.882, + "visibleTrackTimeLength" : 10, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "6a5fa80d-5add-4633-aebc-20478d75b8dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fd5b5312-33d3-422d-b3b3-fe87ce348258" + }, + "attachedElementGuid" : { + "value" : "6a5fa80d-5add-4633-aebc-20478d75b8dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -20, + "y" : 10, + "z" : 754 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "fd5b5312-33d3-422d-b3b3-fe87ce348258" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fd5b5312-33d3-422d-b3b3-fe87ce348258" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "fd5b5312-33d3-422d-b3b3-fe87ce348258" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4f6c1d92-e28a-48fd-86fd-b3ae46296ae4" + }, + "attachedElementGuid" : { + "value" : "6a5fa80d-5add-4633-aebc-20478d75b8dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 4, + "y" : -5, + "z" : 766 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4f6c1d92-e28a-48fd-86fd-b3ae46296ae4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4f6c1d92-e28a-48fd-86fd-b3ae46296ae4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4f6c1d92-e28a-48fd-86fd-b3ae46296ae4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7f7a5464-b973-4f72-8b95-a5bfee01f03b" + }, + "attachedElementGuid" : { + "value" : "6a5fa80d-5add-4633-aebc-20478d75b8dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 6, + "y" : 0, + "z" : 775 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7f7a5464-b973-4f72-8b95-a5bfee01f03b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7f7a5464-b973-4f72-8b95-a5bfee01f03b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "7f7a5464-b973-4f72-8b95-a5bfee01f03b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1f798dc3-474e-4b32-902d-8df6d617e127" + }, + "attachedElementGuid" : { + "value" : "6a5fa80d-5add-4633-aebc-20478d75b8dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -4, + "y" : 0, + "z" : 790 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "1f798dc3-474e-4b32-902d-8df6d617e127" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1f798dc3-474e-4b32-902d-8df6d617e127" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "1f798dc3-474e-4b32-902d-8df6d617e127" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4787b43d-8aa1-4170-9d47-cd83e9d25354" + }, + "attachedElementGuid" : { + "value" : "6a5fa80d-5add-4633-aebc-20478d75b8dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -10, + "y" : 0, + "z" : 798 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4787b43d-8aa1-4170-9d47-cd83e9d25354" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4787b43d-8aa1-4170-9d47-cd83e9d25354" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4787b43d-8aa1-4170-9d47-cd83e9d25354" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8568a341-4a43-44ac-a272-919a253eb7e3" + }, + "attachedElementGuid" : { + "value" : "6a5fa80d-5add-4633-aebc-20478d75b8dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8568a341-4a43-44ac-a272-919a253eb7e3" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 55.058 + },{ + "value" : false, + "time" : 57.882 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "eafcf7d4-9555-4d2d-8343-35587df28625" + }, + "attachedElementGuid" : { + "value" : "8568a341-4a43-44ac-a272-919a253eb7e3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "eafcf7d4-9555-4d2d-8343-35587df28625" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "eafcf7d4-9555-4d2d-8343-35587df28625" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "eafcf7d4-9555-4d2d-8343-35587df28625" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.BaseColorChange_BM,Assembly-CSharp", + "colorR" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 0, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorG" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorB" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorA" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + },{ + "startValue" : 1, + "endValue" : 0, + "startTime" : 57.705, + "endTime" : 58, + "animationCurveType" : 0 + } + ] + }, + "elementName" : "New Base Color Change", + "tags" : [ + + ], + "elementGuid" : { + "value" : "08f15caa-7790-4a0a-a280-f5a654068130" + }, + "attachedElementGuid" : { + "value" : "eafcf7d4-9555-4d2d-8343-35587df28625" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "08f15caa-7790-4a0a-a280-f5a654068130" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 55.588, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1a232ccc-6c53-4afb-8a06-cd0a3fa6787c" + }, + "attachedElementGuid" : { + "value" : "6a5fa80d-5add-4633-aebc-20478d75b8dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1a232ccc-6c53-4afb-8a06-cd0a3fa6787c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "1a232ccc-6c53-4afb-8a06-cd0a3fa6787c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "1a232ccc-6c53-4afb-8a06-cd0a3fa6787c" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fd488902-1d03-432f-a820-6e7a7ecfa501" + }, + "attachedElementGuid" : { + "value" : "1a232ccc-6c53-4afb-8a06-cd0a3fa6787c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "fd488902-1d03-432f-a820-6e7a7ecfa501" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fd488902-1d03-432f-a820-6e7a7ecfa501" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "fd488902-1d03-432f-a820-6e7a7ecfa501" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "fd488902-1d03-432f-a820-6e7a7ecfa501" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 56.117, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "962c9233-2bbc-45b8-9c83-2bbee840e20e" + }, + "attachedElementGuid" : { + "value" : "6a5fa80d-5add-4633-aebc-20478d75b8dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "962c9233-2bbc-45b8-9c83-2bbee840e20e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "962c9233-2bbc-45b8-9c83-2bbee840e20e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "962c9233-2bbc-45b8-9c83-2bbee840e20e" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8971b8b2-3e00-4e67-94ee-15117eb076ea" + }, + "attachedElementGuid" : { + "value" : "962c9233-2bbc-45b8-9c83-2bbee840e20e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8971b8b2-3e00-4e67-94ee-15117eb076ea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8971b8b2-3e00-4e67-94ee-15117eb076ea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8971b8b2-3e00-4e67-94ee-15117eb076ea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "8971b8b2-3e00-4e67-94ee-15117eb076ea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 56.647, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fdf4f34f-85f1-492a-9c7c-44d7a748a2ff" + }, + "attachedElementGuid" : { + "value" : "6a5fa80d-5add-4633-aebc-20478d75b8dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fdf4f34f-85f1-492a-9c7c-44d7a748a2ff" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "fdf4f34f-85f1-492a-9c7c-44d7a748a2ff" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "fdf4f34f-85f1-492a-9c7c-44d7a748a2ff" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7ff090e5-5425-4139-b9df-d4992ba670d4" + }, + "attachedElementGuid" : { + "value" : "fdf4f34f-85f1-492a-9c7c-44d7a748a2ff" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7ff090e5-5425-4139-b9df-d4992ba670d4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7ff090e5-5425-4139-b9df-d4992ba670d4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "7ff090e5-5425-4139-b9df-d4992ba670d4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "7ff090e5-5425-4139-b9df-d4992ba670d4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 57.176, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5653a93a-e1d5-448e-a2ad-a4ce897a751d" + }, + "attachedElementGuid" : { + "value" : "6a5fa80d-5add-4633-aebc-20478d75b8dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5653a93a-e1d5-448e-a2ad-a4ce897a751d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "5653a93a-e1d5-448e-a2ad-a4ce897a751d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "5653a93a-e1d5-448e-a2ad-a4ce897a751d" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c9d703a9-5b65-4768-83be-f6eca120363e" + }, + "attachedElementGuid" : { + "value" : "5653a93a-e1d5-448e-a2ad-a4ce897a751d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c9d703a9-5b65-4768-83be-f6eca120363e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c9d703a9-5b65-4768-83be-f6eca120363e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c9d703a9-5b65-4768-83be-f6eca120363e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "c9d703a9-5b65-4768-83be-f6eca120363e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 57.705, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f6b585a3-5f37-4040-b040-b7a834b40860" + }, + "attachedElementGuid" : { + "value" : "6a5fa80d-5add-4633-aebc-20478d75b8dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f6b585a3-5f37-4040-b040-b7a834b40860" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "f6b585a3-5f37-4040-b040-b7a834b40860" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "f6b585a3-5f37-4040-b040-b7a834b40860" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6f3ec841-664b-4e2e-a6c5-d00c46958e3e" + }, + "attachedElementGuid" : { + "value" : "f6b585a3-5f37-4040-b040-b7a834b40860" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6f3ec841-664b-4e2e-a6c5-d00c46958e3e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6f3ec841-664b-4e2e-a6c5-d00c46958e3e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6f3ec841-664b-4e2e-a6c5-d00c46958e3e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "6f3ec841-664b-4e2e-a6c5-d00c46958e3e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "56.117-57.882", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8ff8717d-91d9-4b6a-a4ca-c06372317582" + }, + "attachedElementGuid" : { + "value" : "4ee7f15e-c6f6-40e5-b9e8-8e4887afe797" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8ff8717d-91d9-4b6a-a4ca-c06372317582" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8ff8717d-91d9-4b6a-a4ca-c06372317582" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 0, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "8ff8717d-91d9-4b6a-a4ca-c06372317582" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 56.117, + "trackEndTime" : 57.882, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "8ff8717d-91d9-4b6a-a4ca-c06372317582" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "32c04c43-108f-48b1-8091-3073ffc67a83" + }, + "attachedElementGuid" : { + "value" : "8ff8717d-91d9-4b6a-a4ca-c06372317582" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 7, + "z" : 760 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "32c04c43-108f-48b1-8091-3073ffc67a83" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "32c04c43-108f-48b1-8091-3073ffc67a83" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "32c04c43-108f-48b1-8091-3073ffc67a83" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "40076f8a-735e-429f-a66c-40f15af66e63" + }, + "attachedElementGuid" : { + "value" : "8ff8717d-91d9-4b6a-a4ca-c06372317582" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 12, + "z" : 800 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "40076f8a-735e-429f-a66c-40f15af66e63" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "40076f8a-735e-429f-a66c-40f15af66e63" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "40076f8a-735e-429f-a66c-40f15af66e63" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp", + "elementName" : "p5r(", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2026dcd0-768d-4d8d-af41-0ede2452d2cf" + }, + "attachedElementGuid" : { + "value" : "00000000-0000-0000-0000-000000000000" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2026dcd0-768d-4d8d-af41-0ede2452d2cf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2026dcd0-768d-4d8d-af41-0ede2452d2cf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "New Track", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + }, + "attachedElementGuid" : { + "value" : "2026dcd0-768d-4d8d-af41-0ede2452d2cf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 0, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 57.882, + "trackEndTime" : 67.764, + "visibleTrackTimeLength" : 1, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "258a1cc3-2814-40cc-bab3-30c9bba344b1" + }, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 798 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "258a1cc3-2814-40cc-bab3-30c9bba344b1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "258a1cc3-2814-40cc-bab3-30c9bba344b1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "258a1cc3-2814-40cc-bab3-30c9bba344b1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "69c5da24-1498-4472-8c42-2ac23c9698c6" + }, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 854 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "69c5da24-1498-4472-8c42-2ac23c9698c6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "69c5da24-1498-4472-8c42-2ac23c9698c6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "69c5da24-1498-4472-8c42-2ac23c9698c6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "57.882-67.764", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8e235175-26dd-462f-a8a2-8fb0ae2c346f" + }, + "attachedElementGuid" : { + "value" : "4ee7f15e-c6f6-40e5-b9e8-8e4887afe797" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8e235175-26dd-462f-a8a2-8fb0ae2c346f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8e235175-26dd-462f-a8a2-8fb0ae2c346f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 0, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "8e235175-26dd-462f-a8a2-8fb0ae2c346f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 57.882, + "trackEndTime" : 67.764, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "8e235175-26dd-462f-a8a2-8fb0ae2c346f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "78f73666-eadf-44cc-9809-269f6e411918" + }, + "attachedElementGuid" : { + "value" : "8e235175-26dd-462f-a8a2-8fb0ae2c346f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 12, + "z" : 800 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "78f73666-eadf-44cc-9809-269f6e411918" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "78f73666-eadf-44cc-9809-269f6e411918" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "78f73666-eadf-44cc-9809-269f6e411918" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b19a9417-677c-4c09-941d-57179b33c97a" + }, + "attachedElementGuid" : { + "value" : "8e235175-26dd-462f-a8a2-8fb0ae2c346f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 12, + "z" : 856 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b19a9417-677c-4c09-941d-57179b33c97a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b19a9417-677c-4c09-941d-57179b33c97a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b19a9417-677c-4c09-941d-57179b33c97a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "52915f6c-6fee-407b-b046-3c119389e42d" + }, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "52915f6c-6fee-407b-b046-3c119389e42d" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 57.882 + },{ + "value" : false, + "time" : 67.764 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "117582e0-6454-42a4-8b27-d993d8b2e0a3" + }, + "attachedElementGuid" : { + "value" : "52915f6c-6fee-407b-b046-3c119389e42d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "117582e0-6454-42a4-8b27-d993d8b2e0a3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "117582e0-6454-42a4-8b27-d993d8b2e0a3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "117582e0-6454-42a4-8b27-d993d8b2e0a3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Displacement_BM,Assembly-CSharp", + "positionX" : { + "animatedFloatList" : [ + + ] + }, + "positionY" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 0, + "startTime" : 0, + "endTime" : 60.705, + "animationCurveType" : 0 + },{ + "startValue" : -3, + "endValue" : -3, + "startTime" : 60.705, + "endTime" : 63.529, + "animationCurveType" : 0 + },{ + "startValue" : -6, + "endValue" : -6, + "startTime" : 63.529, + "endTime" : 68.117, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 0, + "startTime" : 68.117, + "endTime" : 69, + "animationCurveType" : 0 + } + ] + }, + "positionZ" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : -8, + "startTime" : 113.029, + "endTime" : 115.764, + "animationCurveType" : 1 + } + ] + }, + "elementName" : "New Displacement", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0e21b2fb-284a-436d-9d08-1ba7c8bfaba9" + }, + "attachedElementGuid" : { + "value" : "55a94bf1-2759-4aa3-81a7-b374885fe1dc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0e21b2fb-284a-436d-9d08-1ba7c8bfaba9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeEffectsCollection_BM,Assembly-CSharp", + "time" : 57.882, + "elementName" : "p5_1", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0e8769d2-afa6-45cc-add6-b44318cdb919" + }, + "attachedElementGuid" : { + "value" : "e127cd4a-8578-4426-b03f-eca4e25a6ff8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0e8769d2-afa6-45cc-add6-b44318cdb919" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Prior":[ + + ],"Default":[ + { + "__type" : "Ichni.RhythmGame.Beatmap.VignetteEffect_BM,Assembly-CSharp", + "duration" : 9.86, + "peak" : 1, + "smoothness" : 1, + "color" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "intensityCurve" : { + "keys" : [ + { + "time" : 0, + "value" : 0.3, + "inTangent" : 0, + "outTangent" : 0 + },{ + "time" : 0.284, + "value" : 0.3, + "inTangent" : 0, + "outTangent" : 0 + },{ + "time" : 0.285, + "value" : 0.5, + "inTangent" : 0, + "outTangent" : 0 + },{ + "time" : 0.57, + "value" : 0.5, + "inTangent" : 0, + "outTangent" : 0 + },{ + "time" : 0.571, + "value" : 0.7, + "inTangent" : 0, + "outTangent" : 0 + } + ], + "preWrapMode" : 8, + "postWrapMode" : 8 + }, + "effectTime" : 0 + } + ],"Late":[ + + ] + }, + "attachedElementGuid" : { + "value" : "0e8769d2-afa6-45cc-add6-b44318cdb919" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 58.235, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "eb072077-b03e-4f90-a88e-591edc8d6a93" + }, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "eb072077-b03e-4f90-a88e-591edc8d6a93" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "eb072077-b03e-4f90-a88e-591edc8d6a93" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "eb072077-b03e-4f90-a88e-591edc8d6a93" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "81d9d780-27bb-4004-8300-4dd0022be12d" + }, + "attachedElementGuid" : { + "value" : "eb072077-b03e-4f90-a88e-591edc8d6a93" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "81d9d780-27bb-4004-8300-4dd0022be12d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "81d9d780-27bb-4004-8300-4dd0022be12d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "81d9d780-27bb-4004-8300-4dd0022be12d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "81d9d780-27bb-4004-8300-4dd0022be12d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 58.941, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cb5c3790-c621-4fe2-8fbd-ac10fb5a8051" + }, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "cb5c3790-c621-4fe2-8fbd-ac10fb5a8051" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "cb5c3790-c621-4fe2-8fbd-ac10fb5a8051" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "cb5c3790-c621-4fe2-8fbd-ac10fb5a8051" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "33378de1-6ed3-4c26-a464-bf7943cc4eae" + }, + "attachedElementGuid" : { + "value" : "cb5c3790-c621-4fe2-8fbd-ac10fb5a8051" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "33378de1-6ed3-4c26-a464-bf7943cc4eae" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "33378de1-6ed3-4c26-a464-bf7943cc4eae" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "33378de1-6ed3-4c26-a464-bf7943cc4eae" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "33378de1-6ed3-4c26-a464-bf7943cc4eae" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 59.294, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "73a893f9-3c52-4bfe-8d07-2df32bf5967b" + }, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "73a893f9-3c52-4bfe-8d07-2df32bf5967b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "73a893f9-3c52-4bfe-8d07-2df32bf5967b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "73a893f9-3c52-4bfe-8d07-2df32bf5967b" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "88cb1b9c-2b8a-4b6d-8837-18cb556159d9" + }, + "attachedElementGuid" : { + "value" : "73a893f9-3c52-4bfe-8d07-2df32bf5967b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "88cb1b9c-2b8a-4b6d-8837-18cb556159d9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "88cb1b9c-2b8a-4b6d-8837-18cb556159d9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "88cb1b9c-2b8a-4b6d-8837-18cb556159d9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "88cb1b9c-2b8a-4b6d-8837-18cb556159d9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 59.647, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ce1e8387-9526-479d-88b7-74102e6e39a8" + }, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ce1e8387-9526-479d-88b7-74102e6e39a8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "ce1e8387-9526-479d-88b7-74102e6e39a8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "ce1e8387-9526-479d-88b7-74102e6e39a8" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "903de677-d077-41e8-a03d-645b6d61bf35" + }, + "attachedElementGuid" : { + "value" : "ce1e8387-9526-479d-88b7-74102e6e39a8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "903de677-d077-41e8-a03d-645b6d61bf35" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "903de677-d077-41e8-a03d-645b6d61bf35" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "903de677-d077-41e8-a03d-645b6d61bf35" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "903de677-d077-41e8-a03d-645b6d61bf35" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 60.352, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "76e15c23-a365-4ec8-8d68-985ac8a77886" + }, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "76e15c23-a365-4ec8-8d68-985ac8a77886" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "76e15c23-a365-4ec8-8d68-985ac8a77886" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "76e15c23-a365-4ec8-8d68-985ac8a77886" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "89997fbc-6dec-448d-8f25-80ecf7650c90" + }, + "attachedElementGuid" : { + "value" : "76e15c23-a365-4ec8-8d68-985ac8a77886" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "89997fbc-6dec-448d-8f25-80ecf7650c90" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "89997fbc-6dec-448d-8f25-80ecf7650c90" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "89997fbc-6dec-448d-8f25-80ecf7650c90" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "89997fbc-6dec-448d-8f25-80ecf7650c90" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 60.705, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a84e8830-7782-4a76-b9f3-948702875fa3" + }, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a84e8830-7782-4a76-b9f3-948702875fa3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "a84e8830-7782-4a76-b9f3-948702875fa3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "a84e8830-7782-4a76-b9f3-948702875fa3" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "504ce793-13de-465e-82e8-97235d71978b" + }, + "attachedElementGuid" : { + "value" : "a84e8830-7782-4a76-b9f3-948702875fa3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "504ce793-13de-465e-82e8-97235d71978b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "504ce793-13de-465e-82e8-97235d71978b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "504ce793-13de-465e-82e8-97235d71978b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "504ce793-13de-465e-82e8-97235d71978b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 61.058, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b3310b31-09be-4732-ac03-35c5c44a9c67" + }, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b3310b31-09be-4732-ac03-35c5c44a9c67" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "b3310b31-09be-4732-ac03-35c5c44a9c67" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "b3310b31-09be-4732-ac03-35c5c44a9c67" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6ce37496-71e6-4bfd-9f82-6ac58d975f45" + }, + "attachedElementGuid" : { + "value" : "b3310b31-09be-4732-ac03-35c5c44a9c67" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6ce37496-71e6-4bfd-9f82-6ac58d975f45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6ce37496-71e6-4bfd-9f82-6ac58d975f45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6ce37496-71e6-4bfd-9f82-6ac58d975f45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "6ce37496-71e6-4bfd-9f82-6ac58d975f45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 61.764, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0e217187-0519-4410-bca3-85d7a682e5c0" + }, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0e217187-0519-4410-bca3-85d7a682e5c0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "0e217187-0519-4410-bca3-85d7a682e5c0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "0e217187-0519-4410-bca3-85d7a682e5c0" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8f8f5c80-ac3c-46cb-a75c-01bb786aeed8" + }, + "attachedElementGuid" : { + "value" : "0e217187-0519-4410-bca3-85d7a682e5c0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8f8f5c80-ac3c-46cb-a75c-01bb786aeed8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8f8f5c80-ac3c-46cb-a75c-01bb786aeed8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8f8f5c80-ac3c-46cb-a75c-01bb786aeed8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "8f8f5c80-ac3c-46cb-a75c-01bb786aeed8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 62.117, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b6730a12-3b43-41de-af52-4a53cea2ae29" + }, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b6730a12-3b43-41de-af52-4a53cea2ae29" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "b6730a12-3b43-41de-af52-4a53cea2ae29" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "b6730a12-3b43-41de-af52-4a53cea2ae29" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7f70ae24-e002-4820-be96-a1dd613b1fe9" + }, + "attachedElementGuid" : { + "value" : "b6730a12-3b43-41de-af52-4a53cea2ae29" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7f70ae24-e002-4820-be96-a1dd613b1fe9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7f70ae24-e002-4820-be96-a1dd613b1fe9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "7f70ae24-e002-4820-be96-a1dd613b1fe9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "7f70ae24-e002-4820-be96-a1dd613b1fe9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 62.47, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ce85f5ae-0154-4119-a7a7-3fca5d346b6e" + }, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ce85f5ae-0154-4119-a7a7-3fca5d346b6e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "ce85f5ae-0154-4119-a7a7-3fca5d346b6e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "ce85f5ae-0154-4119-a7a7-3fca5d346b6e" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1684607e-85e8-4c16-beb2-0dd82e94953d" + }, + "attachedElementGuid" : { + "value" : "ce85f5ae-0154-4119-a7a7-3fca5d346b6e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "1684607e-85e8-4c16-beb2-0dd82e94953d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1684607e-85e8-4c16-beb2-0dd82e94953d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "1684607e-85e8-4c16-beb2-0dd82e94953d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "1684607e-85e8-4c16-beb2-0dd82e94953d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 63.176, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2d49f216-667d-44d4-9f5b-55f0f4e9ceea" + }, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2d49f216-667d-44d4-9f5b-55f0f4e9ceea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "2d49f216-667d-44d4-9f5b-55f0f4e9ceea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "2d49f216-667d-44d4-9f5b-55f0f4e9ceea" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e25c943a-df23-49a4-84b8-bdc92f44c840" + }, + "attachedElementGuid" : { + "value" : "2d49f216-667d-44d4-9f5b-55f0f4e9ceea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e25c943a-df23-49a4-84b8-bdc92f44c840" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e25c943a-df23-49a4-84b8-bdc92f44c840" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e25c943a-df23-49a4-84b8-bdc92f44c840" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "e25c943a-df23-49a4-84b8-bdc92f44c840" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "21d8bda2-4916-4e5e-be3c-85db97542ae2" + }, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "21d8bda2-4916-4e5e-be3c-85db97542ae2" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 10 + },{ + "value" : false, + "time" : 20 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b9deecb2-c86b-4d6b-afa2-9f724c22343a" + }, + "attachedElementGuid" : { + "value" : "21d8bda2-4916-4e5e-be3c-85db97542ae2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b9deecb2-c86b-4d6b-afa2-9f724c22343a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b9deecb2-c86b-4d6b-afa2-9f724c22343a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "b9deecb2-c86b-4d6b-afa2-9f724c22343a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.BaseColorChange_BM,Assembly-CSharp", + "colorR" : { + "animatedFloatList" : [ + { + "startValue" : 0.5, + "endValue" : 0.5, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorG" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorB" : { + "animatedFloatList" : [ + { + "startValue" : 0.5, + "endValue" : 0.5, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorA" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "elementName" : "New Base Color Change", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a441ab46-202c-47bf-931c-7fde42ae1f1d" + }, + "attachedElementGuid" : { + "value" : "b9deecb2-c86b-4d6b-afa2-9f724c22343a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a441ab46-202c-47bf-931c-7fde42ae1f1d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Displacement_BM,Assembly-CSharp", + "positionX" : { + "animatedFloatList" : [ + { + "startValue" : -1, + "endValue" : -1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "positionY" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 0, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + },{ + "startValue" : -1, + "endValue" : -1, + "startTime" : 60.705, + "endTime" : 61, + "animationCurveType" : 0 + } + ] + }, + "positionZ" : { + "animatedFloatList" : [ + + ] + }, + "elementName" : "New Displacement", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ba2955a4-242d-43b3-b413-95bd7a0fd853" + }, + "attachedElementGuid" : { + "value" : "b9deecb2-c86b-4d6b-afa2-9f724c22343a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ba2955a4-242d-43b3-b413-95bd7a0fd853" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d8e7237d-8e59-4b22-b564-827dfc9d3c16" + }, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d8e7237d-8e59-4b22-b564-827dfc9d3c16" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 10 + },{ + "value" : false, + "time" : 20 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5f83eefa-5a35-4e62-806d-5bec6375c5fc" + }, + "attachedElementGuid" : { + "value" : "d8e7237d-8e59-4b22-b564-827dfc9d3c16" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5f83eefa-5a35-4e62-806d-5bec6375c5fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5f83eefa-5a35-4e62-806d-5bec6375c5fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "5f83eefa-5a35-4e62-806d-5bec6375c5fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.BaseColorChange_BM,Assembly-CSharp", + "colorR" : { + "animatedFloatList" : [ + { + "startValue" : 0.5, + "endValue" : 0.5, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorG" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorB" : { + "animatedFloatList" : [ + { + "startValue" : 0.5, + "endValue" : 0.5, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorA" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "elementName" : "New Base Color Change", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c7c3d608-bf4a-4860-9f21-a25b977a8ba0" + }, + "attachedElementGuid" : { + "value" : "5f83eefa-5a35-4e62-806d-5bec6375c5fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c7c3d608-bf4a-4860-9f21-a25b977a8ba0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Displacement_BM,Assembly-CSharp", + "positionX" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "positionY" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 0, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + },{ + "startValue" : -1, + "endValue" : -1, + "startTime" : 60.705, + "endTime" : 61, + "animationCurveType" : 0 + } + ] + }, + "positionZ" : { + "animatedFloatList" : [ + + ] + }, + "elementName" : "New Displacement", + "tags" : [ + + ], + "elementGuid" : { + "value" : "eb3dfc69-c5b7-4a97-99fa-ce332c64c81c" + }, + "attachedElementGuid" : { + "value" : "5f83eefa-5a35-4e62-806d-5bec6375c5fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "eb3dfc69-c5b7-4a97-99fa-ce332c64c81c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "32fe78b1-da6e-46ff-9a81-1bb61439f9a8" + }, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "32fe78b1-da6e-46ff-9a81-1bb61439f9a8" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 10 + },{ + "value" : false, + "time" : 20 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4ab2f825-5a5f-49fb-b6c7-9ec9c6ae51e6" + }, + "attachedElementGuid" : { + "value" : "32fe78b1-da6e-46ff-9a81-1bb61439f9a8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4ab2f825-5a5f-49fb-b6c7-9ec9c6ae51e6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4ab2f825-5a5f-49fb-b6c7-9ec9c6ae51e6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "4ab2f825-5a5f-49fb-b6c7-9ec9c6ae51e6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.BaseColorChange_BM,Assembly-CSharp", + "colorR" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 0, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorG" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorB" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorA" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 0, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + },{ + "startValue" : 1, + "endValue" : 1, + "startTime" : 60.705, + "endTime" : 61, + "animationCurveType" : 0 + } + ] + }, + "elementName" : "New Base Color Change", + "tags" : [ + + ], + "elementGuid" : { + "value" : "779c5ccc-0461-4c8d-8e7b-128dd4ab17f3" + }, + "attachedElementGuid" : { + "value" : "4ab2f825-5a5f-49fb-b6c7-9ec9c6ae51e6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "779c5ccc-0461-4c8d-8e7b-128dd4ab17f3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Displacement_BM,Assembly-CSharp", + "positionX" : { + "animatedFloatList" : [ + { + "startValue" : -1, + "endValue" : -1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "positionY" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "positionZ" : { + "animatedFloatList" : [ + + ] + }, + "elementName" : "New Displacement", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ac6a6702-3ad2-44c0-872e-178f7c487b8e" + }, + "attachedElementGuid" : { + "value" : "4ab2f825-5a5f-49fb-b6c7-9ec9c6ae51e6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ac6a6702-3ad2-44c0-872e-178f7c487b8e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "dd782649-49dd-49a4-8921-9301f121a8eb" + }, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "dd782649-49dd-49a4-8921-9301f121a8eb" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 10 + },{ + "value" : false, + "time" : 20 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "880d9808-89e7-4ca8-97c9-7b26d753851b" + }, + "attachedElementGuid" : { + "value" : "dd782649-49dd-49a4-8921-9301f121a8eb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "880d9808-89e7-4ca8-97c9-7b26d753851b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "880d9808-89e7-4ca8-97c9-7b26d753851b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "880d9808-89e7-4ca8-97c9-7b26d753851b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.BaseColorChange_BM,Assembly-CSharp", + "colorR" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 0, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorG" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorB" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorA" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 0, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + },{ + "startValue" : 1, + "endValue" : 1, + "startTime" : 60.705, + "endTime" : 61, + "animationCurveType" : 0 + } + ] + }, + "elementName" : "New Base Color Change", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2c8fdd9b-e6bc-42b5-a36e-5257527ab268" + }, + "attachedElementGuid" : { + "value" : "880d9808-89e7-4ca8-97c9-7b26d753851b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2c8fdd9b-e6bc-42b5-a36e-5257527ab268" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Displacement_BM,Assembly-CSharp", + "positionX" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "positionY" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "positionZ" : { + "animatedFloatList" : [ + + ] + }, + "elementName" : "New Displacement", + "tags" : [ + + ], + "elementGuid" : { + "value" : "593d39d5-cc3a-4738-b95b-88226ff5a24c" + }, + "attachedElementGuid" : { + "value" : "880d9808-89e7-4ca8-97c9-7b26d753851b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "593d39d5-cc3a-4738-b95b-88226ff5a24c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Swirl_BM,Assembly-CSharp", + "eulerAngleX" : { + "animatedFloatList" : [ + + ] + }, + "eulerAngleY" : { + "animatedFloatList" : [ + + ] + }, + "eulerAngleZ" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 0, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 180, + "startTime" : 63.529, + "endTime" : 65.647, + "animationCurveType" : 1 + },{ + "startValue" : 180, + "endValue" : 540, + "startTime" : 65.647, + "endTime" : 67.764, + "animationCurveType" : 0 + } + ] + }, + "elementName" : "New Swirl", + "tags" : [ + + ], + "elementGuid" : { + "value" : "43f83008-a4c4-4375-b463-2d13434cb0c9" + }, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "43f83008-a4c4-4375-b463-2d13434cb0c9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 63.529, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5835607b-676e-4cb5-89cd-ee2908350f25" + }, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5835607b-676e-4cb5-89cd-ee2908350f25" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "5835607b-676e-4cb5-89cd-ee2908350f25" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "5835607b-676e-4cb5-89cd-ee2908350f25" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1c55219c-3fdb-4d68-8f4e-adc885143c36" + }, + "attachedElementGuid" : { + "value" : "5835607b-676e-4cb5-89cd-ee2908350f25" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "1c55219c-3fdb-4d68-8f4e-adc885143c36" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1c55219c-3fdb-4d68-8f4e-adc885143c36" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "1c55219c-3fdb-4d68-8f4e-adc885143c36" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "1c55219c-3fdb-4d68-8f4e-adc885143c36" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 63.882, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5f2140f6-925c-4e9d-a6ba-e6dbe312b8b1" + }, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5f2140f6-925c-4e9d-a6ba-e6dbe312b8b1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "5f2140f6-925c-4e9d-a6ba-e6dbe312b8b1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "5f2140f6-925c-4e9d-a6ba-e6dbe312b8b1" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "13d2a2a5-eb1e-4efd-8d16-e24668465e90" + }, + "attachedElementGuid" : { + "value" : "5f2140f6-925c-4e9d-a6ba-e6dbe312b8b1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "13d2a2a5-eb1e-4efd-8d16-e24668465e90" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "13d2a2a5-eb1e-4efd-8d16-e24668465e90" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "13d2a2a5-eb1e-4efd-8d16-e24668465e90" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "13d2a2a5-eb1e-4efd-8d16-e24668465e90" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 64.235, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c9eb928e-d555-430b-bca1-eec2d811450a" + }, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c9eb928e-d555-430b-bca1-eec2d811450a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "c9eb928e-d555-430b-bca1-eec2d811450a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "c9eb928e-d555-430b-bca1-eec2d811450a" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d5bc5179-89ce-4d5d-9d49-4c90736bc2a9" + }, + "attachedElementGuid" : { + "value" : "c9eb928e-d555-430b-bca1-eec2d811450a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d5bc5179-89ce-4d5d-9d49-4c90736bc2a9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d5bc5179-89ce-4d5d-9d49-4c90736bc2a9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d5bc5179-89ce-4d5d-9d49-4c90736bc2a9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d5bc5179-89ce-4d5d-9d49-4c90736bc2a9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 64.588, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "68f2881c-7c87-4101-8267-53a18d3883f7" + }, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "68f2881c-7c87-4101-8267-53a18d3883f7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "68f2881c-7c87-4101-8267-53a18d3883f7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "68f2881c-7c87-4101-8267-53a18d3883f7" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d5a94d27-6fab-45d1-80b3-ece9881bcdd8" + }, + "attachedElementGuid" : { + "value" : "68f2881c-7c87-4101-8267-53a18d3883f7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d5a94d27-6fab-45d1-80b3-ece9881bcdd8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d5a94d27-6fab-45d1-80b3-ece9881bcdd8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d5a94d27-6fab-45d1-80b3-ece9881bcdd8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d5a94d27-6fab-45d1-80b3-ece9881bcdd8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 64.941, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "66cb4954-2078-4b9c-b5c6-989d2a266e72" + }, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "66cb4954-2078-4b9c-b5c6-989d2a266e72" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "66cb4954-2078-4b9c-b5c6-989d2a266e72" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "66cb4954-2078-4b9c-b5c6-989d2a266e72" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cee7d7a2-eece-4ca5-a64d-23af60c62918" + }, + "attachedElementGuid" : { + "value" : "66cb4954-2078-4b9c-b5c6-989d2a266e72" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "cee7d7a2-eece-4ca5-a64d-23af60c62918" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "cee7d7a2-eece-4ca5-a64d-23af60c62918" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "cee7d7a2-eece-4ca5-a64d-23af60c62918" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "cee7d7a2-eece-4ca5-a64d-23af60c62918" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 65.294, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "dcc4bb48-c448-4364-8901-fae22be45f27" + }, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "dcc4bb48-c448-4364-8901-fae22be45f27" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "dcc4bb48-c448-4364-8901-fae22be45f27" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "dcc4bb48-c448-4364-8901-fae22be45f27" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "53ee56fa-b96f-4238-85a7-3d30bbb30a00" + }, + "attachedElementGuid" : { + "value" : "dcc4bb48-c448-4364-8901-fae22be45f27" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "53ee56fa-b96f-4238-85a7-3d30bbb30a00" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "53ee56fa-b96f-4238-85a7-3d30bbb30a00" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "53ee56fa-b96f-4238-85a7-3d30bbb30a00" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "53ee56fa-b96f-4238-85a7-3d30bbb30a00" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 65.647, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9b6de312-ed7f-4a52-a339-6d45c28e1087" + }, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9b6de312-ed7f-4a52-a339-6d45c28e1087" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "9b6de312-ed7f-4a52-a339-6d45c28e1087" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "9b6de312-ed7f-4a52-a339-6d45c28e1087" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6c272905-e0d4-4124-be0d-4ec0e5bce98f" + }, + "attachedElementGuid" : { + "value" : "9b6de312-ed7f-4a52-a339-6d45c28e1087" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6c272905-e0d4-4124-be0d-4ec0e5bce98f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6c272905-e0d4-4124-be0d-4ec0e5bce98f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6c272905-e0d4-4124-be0d-4ec0e5bce98f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "6c272905-e0d4-4124-be0d-4ec0e5bce98f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 66, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "31927de4-af3d-46db-ae8e-f45932e3cd6d" + }, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "31927de4-af3d-46db-ae8e-f45932e3cd6d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "31927de4-af3d-46db-ae8e-f45932e3cd6d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "31927de4-af3d-46db-ae8e-f45932e3cd6d" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3bc62fbd-5dc7-4796-aa38-c2eaeccb124b" + }, + "attachedElementGuid" : { + "value" : "31927de4-af3d-46db-ae8e-f45932e3cd6d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3bc62fbd-5dc7-4796-aa38-c2eaeccb124b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3bc62fbd-5dc7-4796-aa38-c2eaeccb124b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3bc62fbd-5dc7-4796-aa38-c2eaeccb124b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "3bc62fbd-5dc7-4796-aa38-c2eaeccb124b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 66.352, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9402d0a3-3070-4a36-932d-98d8974ecfc8" + }, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9402d0a3-3070-4a36-932d-98d8974ecfc8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "9402d0a3-3070-4a36-932d-98d8974ecfc8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "9402d0a3-3070-4a36-932d-98d8974ecfc8" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "311d8fad-746d-4476-ae57-b706f605e62b" + }, + "attachedElementGuid" : { + "value" : "9402d0a3-3070-4a36-932d-98d8974ecfc8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "311d8fad-746d-4476-ae57-b706f605e62b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "311d8fad-746d-4476-ae57-b706f605e62b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "311d8fad-746d-4476-ae57-b706f605e62b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "311d8fad-746d-4476-ae57-b706f605e62b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 66.705, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1632fb9f-4c5f-429c-a054-3d0c72fe6bd0" + }, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1632fb9f-4c5f-429c-a054-3d0c72fe6bd0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "1632fb9f-4c5f-429c-a054-3d0c72fe6bd0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "1632fb9f-4c5f-429c-a054-3d0c72fe6bd0" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a9c7054e-ca24-47f6-b328-81e10434fcf4" + }, + "attachedElementGuid" : { + "value" : "1632fb9f-4c5f-429c-a054-3d0c72fe6bd0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a9c7054e-ca24-47f6-b328-81e10434fcf4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a9c7054e-ca24-47f6-b328-81e10434fcf4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a9c7054e-ca24-47f6-b328-81e10434fcf4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "a9c7054e-ca24-47f6-b328-81e10434fcf4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 67.058, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "aedd9de2-413c-440d-9754-ac9ff5489fef" + }, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "aedd9de2-413c-440d-9754-ac9ff5489fef" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "aedd9de2-413c-440d-9754-ac9ff5489fef" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "aedd9de2-413c-440d-9754-ac9ff5489fef" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "51555ee1-4a89-45d6-a72f-d56870ee35b7" + }, + "attachedElementGuid" : { + "value" : "aedd9de2-413c-440d-9754-ac9ff5489fef" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "51555ee1-4a89-45d6-a72f-d56870ee35b7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "51555ee1-4a89-45d6-a72f-d56870ee35b7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "51555ee1-4a89-45d6-a72f-d56870ee35b7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "51555ee1-4a89-45d6-a72f-d56870ee35b7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 67.411, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a11e30eb-14da-436b-aab8-50a2b0fee2f9" + }, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a11e30eb-14da-436b-aab8-50a2b0fee2f9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "a11e30eb-14da-436b-aab8-50a2b0fee2f9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "a11e30eb-14da-436b-aab8-50a2b0fee2f9" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "704ca3a1-9399-4d3d-917c-ea972f878ad5" + }, + "attachedElementGuid" : { + "value" : "a11e30eb-14da-436b-aab8-50a2b0fee2f9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "704ca3a1-9399-4d3d-917c-ea972f878ad5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "704ca3a1-9399-4d3d-917c-ea972f878ad5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "704ca3a1-9399-4d3d-917c-ea972f878ad5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "704ca3a1-9399-4d3d-917c-ea972f878ad5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 67.764, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4a3b32f5-60b5-420f-9a0e-a98c8932a821" + }, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4a3b32f5-60b5-420f-9a0e-a98c8932a821" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "4a3b32f5-60b5-420f-9a0e-a98c8932a821" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "4a3b32f5-60b5-420f-9a0e-a98c8932a821" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c7b7a260-02e1-47a6-8f8b-3d0afa235c8d" + }, + "attachedElementGuid" : { + "value" : "4a3b32f5-60b5-420f-9a0e-a98c8932a821" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c7b7a260-02e1-47a6-8f8b-3d0afa235c8d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c7b7a260-02e1-47a6-8f8b-3d0afa235c8d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c7b7a260-02e1-47a6-8f8b-3d0afa235c8d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "c7b7a260-02e1-47a6-8f8b-3d0afa235c8d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 65.823, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "891e5f57-f1c2-4d4e-83ff-0bf8e9d85596" + }, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "891e5f57-f1c2-4d4e-83ff-0bf8e9d85596" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "891e5f57-f1c2-4d4e-83ff-0bf8e9d85596" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "891e5f57-f1c2-4d4e-83ff-0bf8e9d85596" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "67e9efa9-23e5-47b5-a3ad-b239971555d8" + }, + "attachedElementGuid" : { + "value" : "891e5f57-f1c2-4d4e-83ff-0bf8e9d85596" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 1, + "y" : 1, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 0.5, + "y" : 0.5, + "z" : 0.5 + }, + "attachedElementGuid" : { + "value" : "67e9efa9-23e5-47b5-a3ad-b239971555d8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "67e9efa9-23e5-47b5-a3ad-b239971555d8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "67e9efa9-23e5-47b5-a3ad-b239971555d8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "67e9efa9-23e5-47b5-a3ad-b239971555d8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 65.823, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "edb5616c-50bf-4f62-844e-c1f84e4ed8b0" + }, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "edb5616c-50bf-4f62-844e-c1f84e4ed8b0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "edb5616c-50bf-4f62-844e-c1f84e4ed8b0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "edb5616c-50bf-4f62-844e-c1f84e4ed8b0" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5713b571-72fd-4fdc-94e2-14b86848c985" + }, + "attachedElementGuid" : { + "value" : "edb5616c-50bf-4f62-844e-c1f84e4ed8b0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -1, + "y" : -1, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 0.5, + "y" : 0.5, + "z" : 0.5 + }, + "attachedElementGuid" : { + "value" : "5713b571-72fd-4fdc-94e2-14b86848c985" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5713b571-72fd-4fdc-94e2-14b86848c985" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5713b571-72fd-4fdc-94e2-14b86848c985" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "5713b571-72fd-4fdc-94e2-14b86848c985" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 65.823, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5c02c06c-ea7a-4f18-9792-8c4a070bc831" + }, + "attachedElementGuid" : { + "value" : "56a7c80a-d417-4f29-8a61-bd43f017adc3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5c02c06c-ea7a-4f18-9792-8c4a070bc831" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "5c02c06c-ea7a-4f18-9792-8c4a070bc831" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "5c02c06c-ea7a-4f18-9792-8c4a070bc831" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9033902e-0145-4c54-8d2d-8dc77a4774a6" + }, + "attachedElementGuid" : { + "value" : "5c02c06c-ea7a-4f18-9792-8c4a070bc831" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -1, + "y" : -1, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9033902e-0145-4c54-8d2d-8dc77a4774a6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9033902e-0145-4c54-8d2d-8dc77a4774a6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "9033902e-0145-4c54-8d2d-8dc77a4774a6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "9033902e-0145-4c54-8d2d-8dc77a4774a6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 65.823, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d6f21a5d-677a-444f-8a17-bccf77c7a7bd" + }, + "attachedElementGuid" : { + "value" : "56a7c80a-d417-4f29-8a61-bd43f017adc3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d6f21a5d-677a-444f-8a17-bccf77c7a7bd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "d6f21a5d-677a-444f-8a17-bccf77c7a7bd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "d6f21a5d-677a-444f-8a17-bccf77c7a7bd" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "04be7c9a-e7cc-4cab-b3b1-89ce92be1ec3" + }, + "attachedElementGuid" : { + "value" : "d6f21a5d-677a-444f-8a17-bccf77c7a7bd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -1, + "y" : -1, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "04be7c9a-e7cc-4cab-b3b1-89ce92be1ec3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "04be7c9a-e7cc-4cab-b3b1-89ce92be1ec3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "04be7c9a-e7cc-4cab-b3b1-89ce92be1ec3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "04be7c9a-e7cc-4cab-b3b1-89ce92be1ec3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 66.176, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "80ba8c91-df7f-4d86-915c-a2ee7b5b1f12" + }, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "80ba8c91-df7f-4d86-915c-a2ee7b5b1f12" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "80ba8c91-df7f-4d86-915c-a2ee7b5b1f12" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "80ba8c91-df7f-4d86-915c-a2ee7b5b1f12" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "05603bb9-9e5f-41f7-9124-8cb2b6dbdeb9" + }, + "attachedElementGuid" : { + "value" : "80ba8c91-df7f-4d86-915c-a2ee7b5b1f12" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -1, + "y" : 1, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 0.5, + "y" : 0.5, + "z" : 0.5 + }, + "attachedElementGuid" : { + "value" : "05603bb9-9e5f-41f7-9124-8cb2b6dbdeb9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "05603bb9-9e5f-41f7-9124-8cb2b6dbdeb9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "05603bb9-9e5f-41f7-9124-8cb2b6dbdeb9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "05603bb9-9e5f-41f7-9124-8cb2b6dbdeb9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 66.176, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "59d052a8-9b7d-49f2-8621-1b09996a74c5" + }, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "59d052a8-9b7d-49f2-8621-1b09996a74c5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "59d052a8-9b7d-49f2-8621-1b09996a74c5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "59d052a8-9b7d-49f2-8621-1b09996a74c5" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4013fcf3-f35f-4d26-b8d7-7beacb51363f" + }, + "attachedElementGuid" : { + "value" : "59d052a8-9b7d-49f2-8621-1b09996a74c5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 1, + "y" : -1, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 0.5, + "y" : 0.5, + "z" : 0.5 + }, + "attachedElementGuid" : { + "value" : "4013fcf3-f35f-4d26-b8d7-7beacb51363f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4013fcf3-f35f-4d26-b8d7-7beacb51363f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4013fcf3-f35f-4d26-b8d7-7beacb51363f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "4013fcf3-f35f-4d26-b8d7-7beacb51363f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 66.264, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6601cb26-18f6-4038-9844-b0b64e80e4d0" + }, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6601cb26-18f6-4038-9844-b0b64e80e4d0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "6601cb26-18f6-4038-9844-b0b64e80e4d0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "6601cb26-18f6-4038-9844-b0b64e80e4d0" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6830e034-f002-43d5-8870-142bb1d176e1" + }, + "attachedElementGuid" : { + "value" : "6601cb26-18f6-4038-9844-b0b64e80e4d0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 1, + "y" : 1, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 0.5, + "y" : 0.5, + "z" : 0.5 + }, + "attachedElementGuid" : { + "value" : "6830e034-f002-43d5-8870-142bb1d176e1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6830e034-f002-43d5-8870-142bb1d176e1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6830e034-f002-43d5-8870-142bb1d176e1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "6830e034-f002-43d5-8870-142bb1d176e1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 66.264, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "48d06600-3202-4c59-8c45-1bd1abb9dee0" + }, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "48d06600-3202-4c59-8c45-1bd1abb9dee0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "48d06600-3202-4c59-8c45-1bd1abb9dee0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "48d06600-3202-4c59-8c45-1bd1abb9dee0" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1f5ede0d-2638-46c8-9e2e-c5ee6f9f8a99" + }, + "attachedElementGuid" : { + "value" : "48d06600-3202-4c59-8c45-1bd1abb9dee0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -1, + "y" : -1, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 0.5, + "y" : 0.5, + "z" : 0.5 + }, + "attachedElementGuid" : { + "value" : "1f5ede0d-2638-46c8-9e2e-c5ee6f9f8a99" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1f5ede0d-2638-46c8-9e2e-c5ee6f9f8a99" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "1f5ede0d-2638-46c8-9e2e-c5ee6f9f8a99" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "1f5ede0d-2638-46c8-9e2e-c5ee6f9f8a99" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 66.529, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "014c2a45-b87c-44bb-9496-0d59d6077792" + }, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "014c2a45-b87c-44bb-9496-0d59d6077792" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "014c2a45-b87c-44bb-9496-0d59d6077792" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "014c2a45-b87c-44bb-9496-0d59d6077792" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ed0ccaa4-389c-477e-b8f1-d2a05badc27a" + }, + "attachedElementGuid" : { + "value" : "014c2a45-b87c-44bb-9496-0d59d6077792" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -1, + "y" : 1, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 0.5, + "y" : 0.5, + "z" : 0.5 + }, + "attachedElementGuid" : { + "value" : "ed0ccaa4-389c-477e-b8f1-d2a05badc27a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ed0ccaa4-389c-477e-b8f1-d2a05badc27a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ed0ccaa4-389c-477e-b8f1-d2a05badc27a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "ed0ccaa4-389c-477e-b8f1-d2a05badc27a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 66.529, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "07983144-409a-47f4-b39a-a6b12eafba45" + }, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "07983144-409a-47f4-b39a-a6b12eafba45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "07983144-409a-47f4-b39a-a6b12eafba45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "07983144-409a-47f4-b39a-a6b12eafba45" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "30763692-5470-4d75-988d-895926cecf33" + }, + "attachedElementGuid" : { + "value" : "07983144-409a-47f4-b39a-a6b12eafba45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 1, + "y" : -1, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 0.5, + "y" : 0.5, + "z" : 0.5 + }, + "attachedElementGuid" : { + "value" : "30763692-5470-4d75-988d-895926cecf33" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "30763692-5470-4d75-988d-895926cecf33" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "30763692-5470-4d75-988d-895926cecf33" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "30763692-5470-4d75-988d-895926cecf33" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 66.617, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d3550bb2-2c8a-479d-9f80-a1c6037015db" + }, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d3550bb2-2c8a-479d-9f80-a1c6037015db" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "d3550bb2-2c8a-479d-9f80-a1c6037015db" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "d3550bb2-2c8a-479d-9f80-a1c6037015db" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "23f637d3-0175-4495-b9f7-9820bffcf466" + }, + "attachedElementGuid" : { + "value" : "d3550bb2-2c8a-479d-9f80-a1c6037015db" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 1, + "y" : 1, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 0.5, + "y" : 0.5, + "z" : 0.5 + }, + "attachedElementGuid" : { + "value" : "23f637d3-0175-4495-b9f7-9820bffcf466" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "23f637d3-0175-4495-b9f7-9820bffcf466" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "23f637d3-0175-4495-b9f7-9820bffcf466" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "23f637d3-0175-4495-b9f7-9820bffcf466" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 66.617, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6dc62285-f738-4d21-a54f-5e588d2881fa" + }, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6dc62285-f738-4d21-a54f-5e588d2881fa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "6dc62285-f738-4d21-a54f-5e588d2881fa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "6dc62285-f738-4d21-a54f-5e588d2881fa" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "30d19356-24d8-4b88-a415-3b01d6a82f94" + }, + "attachedElementGuid" : { + "value" : "6dc62285-f738-4d21-a54f-5e588d2881fa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -1, + "y" : -1, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "30d19356-24d8-4b88-a415-3b01d6a82f94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "30d19356-24d8-4b88-a415-3b01d6a82f94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "30d19356-24d8-4b88-a415-3b01d6a82f94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "30d19356-24d8-4b88-a415-3b01d6a82f94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 66.882, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "21b4d48e-e36c-4765-aa7b-7582dda855e6" + }, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "21b4d48e-e36c-4765-aa7b-7582dda855e6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "21b4d48e-e36c-4765-aa7b-7582dda855e6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "21b4d48e-e36c-4765-aa7b-7582dda855e6" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "923b880a-7383-4278-8e22-3b1e875c926a" + }, + "attachedElementGuid" : { + "value" : "21b4d48e-e36c-4765-aa7b-7582dda855e6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -1, + "y" : 1, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 0.5, + "y" : 0.5, + "z" : 0.5 + }, + "attachedElementGuid" : { + "value" : "923b880a-7383-4278-8e22-3b1e875c926a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "923b880a-7383-4278-8e22-3b1e875c926a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "923b880a-7383-4278-8e22-3b1e875c926a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "923b880a-7383-4278-8e22-3b1e875c926a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 66.882, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "67cabdb2-5b70-41c1-a125-50ea156398ee" + }, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "67cabdb2-5b70-41c1-a125-50ea156398ee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "67cabdb2-5b70-41c1-a125-50ea156398ee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "67cabdb2-5b70-41c1-a125-50ea156398ee" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "85c6256c-2c47-479d-b9f1-81ae234fd724" + }, + "attachedElementGuid" : { + "value" : "67cabdb2-5b70-41c1-a125-50ea156398ee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 1, + "y" : -1, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 0.5, + "y" : 0.5, + "z" : 0.5 + }, + "attachedElementGuid" : { + "value" : "85c6256c-2c47-479d-b9f1-81ae234fd724" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "85c6256c-2c47-479d-b9f1-81ae234fd724" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "85c6256c-2c47-479d-b9f1-81ae234fd724" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "85c6256c-2c47-479d-b9f1-81ae234fd724" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 66.97, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1f7ead0f-8498-4ef2-a956-09b26d9a62d3" + }, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1f7ead0f-8498-4ef2-a956-09b26d9a62d3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "1f7ead0f-8498-4ef2-a956-09b26d9a62d3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "1f7ead0f-8498-4ef2-a956-09b26d9a62d3" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ad6cfeba-e1ab-4aaf-83fd-eec7b5087f54" + }, + "attachedElementGuid" : { + "value" : "1f7ead0f-8498-4ef2-a956-09b26d9a62d3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 1, + "y" : 1, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 0.5, + "y" : 0.5, + "z" : 0.5 + }, + "attachedElementGuid" : { + "value" : "ad6cfeba-e1ab-4aaf-83fd-eec7b5087f54" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ad6cfeba-e1ab-4aaf-83fd-eec7b5087f54" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ad6cfeba-e1ab-4aaf-83fd-eec7b5087f54" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "ad6cfeba-e1ab-4aaf-83fd-eec7b5087f54" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 66.97, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3cae86ad-eb20-4763-928a-a855260f7556" + }, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3cae86ad-eb20-4763-928a-a855260f7556" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "3cae86ad-eb20-4763-928a-a855260f7556" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "3cae86ad-eb20-4763-928a-a855260f7556" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2d3f1269-7a1b-44ae-a284-72505f1430fd" + }, + "attachedElementGuid" : { + "value" : "3cae86ad-eb20-4763-928a-a855260f7556" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -1, + "y" : -1, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 0.5, + "y" : 0.5, + "z" : 0.5 + }, + "attachedElementGuid" : { + "value" : "2d3f1269-7a1b-44ae-a284-72505f1430fd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2d3f1269-7a1b-44ae-a284-72505f1430fd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "2d3f1269-7a1b-44ae-a284-72505f1430fd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "2d3f1269-7a1b-44ae-a284-72505f1430fd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 67.235, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "937a89b5-92c9-474f-b555-b1e48fb0df91" + }, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "937a89b5-92c9-474f-b555-b1e48fb0df91" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "937a89b5-92c9-474f-b555-b1e48fb0df91" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "937a89b5-92c9-474f-b555-b1e48fb0df91" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ad77481d-34bf-4973-a515-4cf560b4661a" + }, + "attachedElementGuid" : { + "value" : "937a89b5-92c9-474f-b555-b1e48fb0df91" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -1, + "y" : 1, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 0.5, + "y" : 0.5, + "z" : 0.5 + }, + "attachedElementGuid" : { + "value" : "ad77481d-34bf-4973-a515-4cf560b4661a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ad77481d-34bf-4973-a515-4cf560b4661a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ad77481d-34bf-4973-a515-4cf560b4661a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "ad77481d-34bf-4973-a515-4cf560b4661a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 67.235, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "311b2213-91c4-4e03-8e7a-97d4cc86f64f" + }, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "311b2213-91c4-4e03-8e7a-97d4cc86f64f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "311b2213-91c4-4e03-8e7a-97d4cc86f64f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "311b2213-91c4-4e03-8e7a-97d4cc86f64f" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0b8297ea-55b5-451a-9b66-13f335554eb8" + }, + "attachedElementGuid" : { + "value" : "311b2213-91c4-4e03-8e7a-97d4cc86f64f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 1, + "y" : -1, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 0.5, + "y" : 0.5, + "z" : 0.5 + }, + "attachedElementGuid" : { + "value" : "0b8297ea-55b5-451a-9b66-13f335554eb8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0b8297ea-55b5-451a-9b66-13f335554eb8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0b8297ea-55b5-451a-9b66-13f335554eb8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "0b8297ea-55b5-451a-9b66-13f335554eb8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 67.323, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "adb1a709-d785-432e-a494-0b8e55f537b1" + }, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "adb1a709-d785-432e-a494-0b8e55f537b1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "adb1a709-d785-432e-a494-0b8e55f537b1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "adb1a709-d785-432e-a494-0b8e55f537b1" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "76ebf3c3-15b8-49b8-8a11-d06c61ad70af" + }, + "attachedElementGuid" : { + "value" : "adb1a709-d785-432e-a494-0b8e55f537b1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 1, + "y" : 1, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 0.5, + "y" : 0.5, + "z" : 0.5 + }, + "attachedElementGuid" : { + "value" : "76ebf3c3-15b8-49b8-8a11-d06c61ad70af" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "76ebf3c3-15b8-49b8-8a11-d06c61ad70af" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "76ebf3c3-15b8-49b8-8a11-d06c61ad70af" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "76ebf3c3-15b8-49b8-8a11-d06c61ad70af" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 67.323, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0e126ad8-cd54-46aa-b8bb-c179afa666da" + }, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0e126ad8-cd54-46aa-b8bb-c179afa666da" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "0e126ad8-cd54-46aa-b8bb-c179afa666da" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "0e126ad8-cd54-46aa-b8bb-c179afa666da" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d32ed0ef-c7c2-4f63-a472-463479370ce7" + }, + "attachedElementGuid" : { + "value" : "0e126ad8-cd54-46aa-b8bb-c179afa666da" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -1, + "y" : -1, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 0.5, + "y" : 0.5, + "z" : 0.5 + }, + "attachedElementGuid" : { + "value" : "d32ed0ef-c7c2-4f63-a472-463479370ce7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d32ed0ef-c7c2-4f63-a472-463479370ce7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d32ed0ef-c7c2-4f63-a472-463479370ce7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d32ed0ef-c7c2-4f63-a472-463479370ce7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 67.588, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "32ca128e-e45f-4519-b105-91597f94e833" + }, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "32ca128e-e45f-4519-b105-91597f94e833" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "32ca128e-e45f-4519-b105-91597f94e833" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "32ca128e-e45f-4519-b105-91597f94e833" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0e54f153-5b44-4ff5-8758-f2c9637622ea" + }, + "attachedElementGuid" : { + "value" : "32ca128e-e45f-4519-b105-91597f94e833" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -1, + "y" : 1, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 0.5, + "y" : 0.5, + "z" : 0.5 + }, + "attachedElementGuid" : { + "value" : "0e54f153-5b44-4ff5-8758-f2c9637622ea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0e54f153-5b44-4ff5-8758-f2c9637622ea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0e54f153-5b44-4ff5-8758-f2c9637622ea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "0e54f153-5b44-4ff5-8758-f2c9637622ea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 67.588, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4621cab6-ed1d-4e5b-aafd-5170fbc90c43" + }, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4621cab6-ed1d-4e5b-aafd-5170fbc90c43" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "4621cab6-ed1d-4e5b-aafd-5170fbc90c43" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "4621cab6-ed1d-4e5b-aafd-5170fbc90c43" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "dc545f22-a4a7-4c2c-af44-b16de2587c66" + }, + "attachedElementGuid" : { + "value" : "4621cab6-ed1d-4e5b-aafd-5170fbc90c43" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 1, + "y" : -1, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 0.5, + "y" : 0.5, + "z" : 0.5 + }, + "attachedElementGuid" : { + "value" : "dc545f22-a4a7-4c2c-af44-b16de2587c66" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "dc545f22-a4a7-4c2c-af44-b16de2587c66" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "dc545f22-a4a7-4c2c-af44-b16de2587c66" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "dc545f22-a4a7-4c2c-af44-b16de2587c66" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 67.676, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "337a59d8-b5be-40b9-b621-502ee0bdc4bd" + }, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "337a59d8-b5be-40b9-b621-502ee0bdc4bd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "337a59d8-b5be-40b9-b621-502ee0bdc4bd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "337a59d8-b5be-40b9-b621-502ee0bdc4bd" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "dc641f00-234a-4144-89b9-e3edf0ad914f" + }, + "attachedElementGuid" : { + "value" : "337a59d8-b5be-40b9-b621-502ee0bdc4bd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 1, + "y" : 1, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 0.5, + "y" : 0.5, + "z" : 0.5 + }, + "attachedElementGuid" : { + "value" : "dc641f00-234a-4144-89b9-e3edf0ad914f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "dc641f00-234a-4144-89b9-e3edf0ad914f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "dc641f00-234a-4144-89b9-e3edf0ad914f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "dc641f00-234a-4144-89b9-e3edf0ad914f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 67.676, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5b743aa1-1ae5-4e93-8781-9eb0709d288e" + }, + "attachedElementGuid" : { + "value" : "2be87d21-bc4e-4a29-92e7-862b7572775c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5b743aa1-1ae5-4e93-8781-9eb0709d288e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "5b743aa1-1ae5-4e93-8781-9eb0709d288e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "5b743aa1-1ae5-4e93-8781-9eb0709d288e" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b9929c56-b4a6-4af0-a4ad-dfa2af3defb4" + }, + "attachedElementGuid" : { + "value" : "5b743aa1-1ae5-4e93-8781-9eb0709d288e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -1, + "y" : -1, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 0.5, + "y" : 0.5, + "z" : 0.5 + }, + "attachedElementGuid" : { + "value" : "b9929c56-b4a6-4af0-a4ad-dfa2af3defb4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b9929c56-b4a6-4af0-a4ad-dfa2af3defb4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b9929c56-b4a6-4af0-a4ad-dfa2af3defb4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "b9929c56-b4a6-4af0-a4ad-dfa2af3defb4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeEffectsCollection_BM,Assembly-CSharp", + "time" : 67.764, + "elementName" : "p5_2", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6ef7e046-caf8-4536-a8d1-ff21959548da" + }, + "attachedElementGuid" : { + "value" : "e127cd4a-8578-4426-b03f-eca4e25a6ff8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6ef7e046-caf8-4536-a8d1-ff21959548da" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Prior":[ + + ],"Default":[ + { + "__type" : "Ichni.RhythmGame.Beatmap.VignetteEffect_BM,Assembly-CSharp", + "duration" : 1.059, + "peak" : 3, + "smoothness" : 1, + "color" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "intensityCurve" : { + "keys" : [ + { + "time" : 0, + "value" : 0, + "inTangent" : 0, + "outTangent" : 0 + },{ + "time" : 0.2, + "value" : 1, + "inTangent" : 0, + "outTangent" : 0 + },{ + "time" : 0.8, + "value" : 1, + "inTangent" : 0, + "outTangent" : 0 + },{ + "time" : 0.85, + "value" : 0, + "inTangent" : 0, + "outTangent" : 0 + } + ], + "preWrapMode" : 8, + "postWrapMode" : 8 + }, + "effectTime" : 0 + } + ],"Late":[ + + ] + }, + "attachedElementGuid" : { + "value" : "6ef7e046-caf8-4536-a8d1-ff21959548da" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp", + "elementName" : "p6", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7fe024ab-24d5-4837-a25a-1f289f37e920" + }, + "attachedElementGuid" : { + "value" : "00000000-0000-0000-0000-000000000000" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7fe024ab-24d5-4837-a25a-1f289f37e920" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7fe024ab-24d5-4837-a25a-1f289f37e920" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp", + "elementName" : "Particle", + "tags" : [ + + ], + "elementGuid" : { + "value" : "04dfdf5a-7501-4be4-89e0-8f0467c31325" + }, + "attachedElementGuid" : { + "value" : "7fe024ab-24d5-4837-a25a-1f289f37e920" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "04dfdf5a-7501-4be4-89e0-8f0467c31325" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "04dfdf5a-7501-4be4-89e0-8f0467c31325" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "New Track", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7473fc9a-e118-436f-b553-5c117f3bb6fe" + }, + "attachedElementGuid" : { + "value" : "04dfdf5a-7501-4be4-89e0-8f0467c31325" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7473fc9a-e118-436f-b553-5c117f3bb6fe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7473fc9a-e118-436f-b553-5c117f3bb6fe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 0, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "7473fc9a-e118-436f-b553-5c117f3bb6fe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 22.588, + "trackEndTime" : 35.294, + "visibleTrackTimeLength" : 1, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "7473fc9a-e118-436f-b553-5c117f3bb6fe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2de8f202-6a38-4a6c-8b8d-57378d4bb3b8" + }, + "attachedElementGuid" : { + "value" : "7473fc9a-e118-436f-b553-5c117f3bb6fe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 10, + "z" : 1396 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2de8f202-6a38-4a6c-8b8d-57378d4bb3b8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2de8f202-6a38-4a6c-8b8d-57378d4bb3b8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "2de8f202-6a38-4a6c-8b8d-57378d4bb3b8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5df13cb1-b885-4888-8393-8e8a2033adc8" + }, + "attachedElementGuid" : { + "value" : "7473fc9a-e118-436f-b553-5c117f3bb6fe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 10, + "z" : 854 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5df13cb1-b885-4888-8393-8e8a2033adc8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5df13cb1-b885-4888-8393-8e8a2033adc8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5df13cb1-b885-4888-8393-8e8a2033adc8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ParticleTracker_BM,Assembly-CSharp", + "prewarm" : true, + "playTime" : 67.95, + "stopTime" : 91.764, + "is3D" : true, + "width" : 80, + "extendDirection" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "density" : 7, + "lifeTime" : 20, + "isAutoOrient" : true, + "particleRotation" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "materialThemeBundleName" : "basic", + "materialName" : "Basic_Particle_Orb_0", + "elementName" : "New Particle Tracker", + "tags" : [ + + ], + "elementGuid" : { + "value" : "03752c06-a865-44c7-803c-c6afbbb4eb11" + }, + "attachedElementGuid" : { + "value" : "7473fc9a-e118-436f-b553-5c117f3bb6fe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 0.1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "03752c06-a865-44c7-803c-c6afbbb4eb11" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ParticleTracker_BM,Assembly-CSharp", + "prewarm" : true, + "playTime" : 67.95, + "stopTime" : 91.764, + "is3D" : true, + "width" : 80, + "extendDirection" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "density" : 7, + "lifeTime" : 20, + "isAutoOrient" : true, + "particleRotation" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "materialThemeBundleName" : "basic", + "materialName" : "Basic_Particle_Orb_0", + "elementName" : "New Particle Tracker", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4b83c4ac-2f16-4ee9-9344-063ddcbda326" + }, + "attachedElementGuid" : { + "value" : "7473fc9a-e118-436f-b553-5c117f3bb6fe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0, + "g" : 1, + "b" : 1, + "a" : 0.1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4b83c4ac-2f16-4ee9-9344-063ddcbda326" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ParticleTracker_BM,Assembly-CSharp", + "prewarm" : true, + "playTime" : 67.95, + "stopTime" : 91.764, + "is3D" : true, + "width" : 80, + "extendDirection" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "density" : 7, + "lifeTime" : 20, + "isAutoOrient" : true, + "particleRotation" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "materialThemeBundleName" : "basic", + "materialName" : "Basic_Particle_Orb_0", + "elementName" : "New Particle Tracker", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8f25b053-a6a1-4825-81f0-1f231abadfab" + }, + "attachedElementGuid" : { + "value" : "7473fc9a-e118-436f-b553-5c117f3bb6fe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0.5, + "g" : 1, + "b" : 0.5, + "a" : 0.1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8f25b053-a6a1-4825-81f0-1f231abadfab" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ParticleTracker_BM,Assembly-CSharp", + "prewarm" : true, + "playTime" : 67.95, + "stopTime" : 91.764, + "is3D" : true, + "width" : 80, + "extendDirection" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "density" : 7, + "lifeTime" : 20, + "isAutoOrient" : true, + "particleRotation" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "materialThemeBundleName" : "basic", + "materialName" : "Basic_Particle_Orb_0", + "elementName" : "New Particle Tracker", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b2539d44-94d9-41f4-9772-ba503c24c751" + }, + "attachedElementGuid" : { + "value" : "7473fc9a-e118-436f-b553-5c117f3bb6fe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 0.25, + "b" : 0.25, + "a" : 0.1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b2539d44-94d9-41f4-9772-ba503c24c751" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp", + "elementName" : "judge", + "tags" : [ + + ], + "elementGuid" : { + "value" : "00d2bd7a-f067-4a23-9dde-ad51c61e0344" + }, + "attachedElementGuid" : { + "value" : "8a93d451-0bc7-413a-aba5-5a041a6b8912" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "00d2bd7a-f067-4a23-9dde-ad51c61e0344" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "00d2bd7a-f067-4a23-9dde-ad51c61e0344" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "New Track", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8595876a-d255-46b8-a07d-cbe0a2fc00ab" + }, + "attachedElementGuid" : { + "value" : "00d2bd7a-f067-4a23-9dde-ad51c61e0344" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 10 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8595876a-d255-46b8-a07d-cbe0a2fc00ab" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8595876a-d255-46b8-a07d-cbe0a2fc00ab" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 1, + "trackSamplingType" : 0, + "isClosed" : true, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "8595876a-d255-46b8-a07d-cbe0a2fc00ab" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleStatic_BM,Assembly-CSharp", + "trackTotalTime" : 1, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "8595876a-d255-46b8-a07d-cbe0a2fc00ab" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackRendererSubmodulePathGenerator_BM,Assembly-CSharp", + "materialThemeBundleName" : "", + "materialName" : "", + "enableEmission" : false, + "emissionIntensity" : 0, + "zWrite" : true, + "uvScale" : { + "x" : 1, + "y" : 1 + }, + "uvOffset" : { + "x" : 0, + "y" : 0 + }, + "attachedElementGuid" : { + "value" : "8595876a-d255-46b8-a07d-cbe0a2fc00ab" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "13e5057f-9cb6-4f9f-b525-ad56aad5d198" + }, + "attachedElementGuid" : { + "value" : "8595876a-d255-46b8-a07d-cbe0a2fc00ab" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 0.1, + "y" : 0.1, + "z" : 0.1 + }, + "attachedElementGuid" : { + "value" : "13e5057f-9cb6-4f9f-b525-ad56aad5d198" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "13e5057f-9cb6-4f9f-b525-ad56aad5d198" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "13e5057f-9cb6-4f9f-b525-ad56aad5d198" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "40b7eea1-fe06-4d0a-8b5a-40f5a1d72d98" + }, + "attachedElementGuid" : { + "value" : "8595876a-d255-46b8-a07d-cbe0a2fc00ab" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 2 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 0.1, + "y" : 0.1, + "z" : 0.1 + }, + "attachedElementGuid" : { + "value" : "40b7eea1-fe06-4d0a-8b5a-40f5a1d72d98" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "40b7eea1-fe06-4d0a-8b5a-40f5a1d72d98" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "40b7eea1-fe06-4d0a-8b5a-40f5a1d72d98" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c682f548-6abf-4bbd-8f47-fabd9b88cf29" + }, + "attachedElementGuid" : { + "value" : "8595876a-d255-46b8-a07d-cbe0a2fc00ab" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -2, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 0.1, + "y" : 0.1, + "z" : 0.1 + }, + "attachedElementGuid" : { + "value" : "c682f548-6abf-4bbd-8f47-fabd9b88cf29" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c682f548-6abf-4bbd-8f47-fabd9b88cf29" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c682f548-6abf-4bbd-8f47-fabd9b88cf29" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cd9707e4-cb04-40a8-9314-18dc433f30ec" + }, + "attachedElementGuid" : { + "value" : "8595876a-d255-46b8-a07d-cbe0a2fc00ab" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : -2 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 0.1, + "y" : 0.1, + "z" : 0.1 + }, + "attachedElementGuid" : { + "value" : "cd9707e4-cb04-40a8-9314-18dc433f30ec" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "cd9707e4-cb04-40a8-9314-18dc433f30ec" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "cd9707e4-cb04-40a8-9314-18dc433f30ec" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Scale_BM,Assembly-CSharp", + "scaleX" : { + "animatedFloatList" : [ + { + "startValue" : 3, + "endValue" : -1, + "startTime" : 10.588, + "endTime" : 11.294, + "animationCurveType" : 1 + },{ + "startValue" : -1, + "endValue" : 2, + "startTime" : 11.294, + "endTime" : 11.794, + "animationCurveType" : 0 + } + ] + }, + "scaleY" : { + "animatedFloatList" : [ + + ] + }, + "scaleZ" : { + "animatedFloatList" : [ + { + "startValue" : 3, + "endValue" : -1, + "startTime" : 10.588, + "endTime" : 11.294, + "animationCurveType" : 1 + },{ + "startValue" : -1, + "endValue" : 2, + "startTime" : 11.294, + "endTime" : 11.794, + "animationCurveType" : 0 + } + ] + }, + "elementName" : "New Scale", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1a04bc59-41d3-4b60-9846-0e42eb2c436c" + }, + "attachedElementGuid" : { + "value" : "8595876a-d255-46b8-a07d-cbe0a2fc00ab" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1a04bc59-41d3-4b60-9846-0e42eb2c436c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.BaseColorChange_BM,Assembly-CSharp", + "colorR" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorG" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorB" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorA" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 0, + "startTime" : 0, + "endTime" : 10, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 1, + "startTime" : 10.588, + "endTime" : 11.294, + "animationCurveType" : 1 + },{ + "startValue" : 1, + "endValue" : 0, + "startTime" : 11.294, + "endTime" : 11.794, + "animationCurveType" : 2 + } + ] + }, + "elementName" : "New Base Color Change", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8f4c1707-6c33-41a2-b3dd-a872d256a8b0" + }, + "attachedElementGuid" : { + "value" : "13e5057f-9cb6-4f9f-b525-ad56aad5d198" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8f4c1707-6c33-41a2-b3dd-a872d256a8b0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.BaseColorChange_BM,Assembly-CSharp", + "colorR" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorG" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorB" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorA" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 0, + "startTime" : 0, + "endTime" : 10, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 1, + "startTime" : 10.588, + "endTime" : 11.294, + "animationCurveType" : 1 + },{ + "startValue" : 1, + "endValue" : 0, + "startTime" : 11.294, + "endTime" : 11.794, + "animationCurveType" : 2 + } + ] + }, + "elementName" : "New Base Color Change", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fc54763a-cfd9-44d6-9910-2aa95e1df77f" + }, + "attachedElementGuid" : { + "value" : "40b7eea1-fe06-4d0a-8b5a-40f5a1d72d98" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fc54763a-cfd9-44d6-9910-2aa95e1df77f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.BaseColorChange_BM,Assembly-CSharp", + "colorR" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorG" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorB" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorA" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 0, + "startTime" : 0, + "endTime" : 10, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 1, + "startTime" : 10.588, + "endTime" : 11.294, + "animationCurveType" : 1 + },{ + "startValue" : 1, + "endValue" : 0, + "startTime" : 11.294, + "endTime" : 11.794, + "animationCurveType" : 2 + } + ] + }, + "elementName" : "New Base Color Change", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e4812c84-d71d-437e-93a2-43352a378e78" + }, + "attachedElementGuid" : { + "value" : "c682f548-6abf-4bbd-8f47-fabd9b88cf29" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e4812c84-d71d-437e-93a2-43352a378e78" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.BaseColorChange_BM,Assembly-CSharp", + "colorR" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorG" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorB" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorA" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 0, + "startTime" : 0, + "endTime" : 10, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 1, + "startTime" : 10.588, + "endTime" : 11.294, + "animationCurveType" : 1 + },{ + "startValue" : 1, + "endValue" : 0, + "startTime" : 11.294, + "endTime" : 11.794, + "animationCurveType" : 2 + } + ] + }, + "elementName" : "New Base Color Change", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b2b5fec8-01c4-44d1-bb28-094285926329" + }, + "attachedElementGuid" : { + "value" : "cd9707e4-cb04-40a8-9314-18dc433f30ec" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b2b5fec8-01c4-44d1-bb28-094285926329" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "New Track", + "tags" : [ + + ], + "elementGuid" : { + "value" : "23b234d5-7313-4132-bb58-3b83bc91bcd6" + }, + "attachedElementGuid" : { + "value" : "8a93d451-0bc7-413a-aba5-5a041a6b8912" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "23b234d5-7313-4132-bb58-3b83bc91bcd6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "23b234d5-7313-4132-bb58-3b83bc91bcd6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 3, + "trackSamplingType" : 0, + "isClosed" : true, + "isShowingDisplay" : true, + "attachedElementGuid" : { + "value" : "23b234d5-7313-4132-bb58-3b83bc91bcd6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleStatic_BM,Assembly-CSharp", + "trackTotalTime" : 1, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "23b234d5-7313-4132-bb58-3b83bc91bcd6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackRendererSubmoduleSurface_BM,Assembly-CSharp", + "materialThemeBundleName" : "", + "materialName" : "", + "enableEmission" : false, + "emissionIntensity" : 0, + "zWrite" : true, + "uvScale" : { + "x" : 1, + "y" : 1 + }, + "uvOffset" : { + "x" : 0, + "y" : 0 + }, + "attachedElementGuid" : { + "value" : "23b234d5-7313-4132-bb58-3b83bc91bcd6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "db31ec74-3aa9-48f5-84e9-7f04f8dc0ee1" + }, + "attachedElementGuid" : { + "value" : "23b234d5-7313-4132-bb58-3b83bc91bcd6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -30, + "y" : 2, + "z" : 108 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "db31ec74-3aa9-48f5-84e9-7f04f8dc0ee1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "db31ec74-3aa9-48f5-84e9-7f04f8dc0ee1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "db31ec74-3aa9-48f5-84e9-7f04f8dc0ee1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "edf4240f-c4f5-4c04-8889-2a61a36b6bc0" + }, + "attachedElementGuid" : { + "value" : "23b234d5-7313-4132-bb58-3b83bc91bcd6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -30, + "y" : 2, + "z" : 128 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "edf4240f-c4f5-4c04-8889-2a61a36b6bc0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "edf4240f-c4f5-4c04-8889-2a61a36b6bc0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "edf4240f-c4f5-4c04-8889-2a61a36b6bc0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f5a8a7c4-7252-4800-ba8c-0b57857f2d2b" + }, + "attachedElementGuid" : { + "value" : "23b234d5-7313-4132-bb58-3b83bc91bcd6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -30, + "y" : 30, + "z" : 128 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f5a8a7c4-7252-4800-ba8c-0b57857f2d2b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f5a8a7c4-7252-4800-ba8c-0b57857f2d2b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f5a8a7c4-7252-4800-ba8c-0b57857f2d2b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "94bbb730-9fc6-4079-a4f5-497d4e077a30" + }, + "attachedElementGuid" : { + "value" : "23b234d5-7313-4132-bb58-3b83bc91bcd6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 30, + "y" : 30, + "z" : 128 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "94bbb730-9fc6-4079-a4f5-497d4e077a30" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "94bbb730-9fc6-4079-a4f5-497d4e077a30" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "94bbb730-9fc6-4079-a4f5-497d4e077a30" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.BaseColorChange_BM,Assembly-CSharp", + "colorR" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorG" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorB" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorA" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 0, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 1, + "startTime" : 21.176, + "endTime" : 21.882, + "animationCurveType" : 0 + },{ + "startValue" : 1, + "endValue" : 0, + "startTime" : 21.882, + "endTime" : 22.235, + "animationCurveType" : 0 + } + ] + }, + "elementName" : "New Base Color Change", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9c6b8ab2-5bc1-4758-a5ef-15a02eb5e25d" + }, + "attachedElementGuid" : { + "value" : "db31ec74-3aa9-48f5-84e9-7f04f8dc0ee1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9c6b8ab2-5bc1-4758-a5ef-15a02eb5e25d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.BaseColorChange_BM,Assembly-CSharp", + "colorR" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorG" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorB" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorA" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 0, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 1, + "startTime" : 21.176, + "endTime" : 21.882, + "animationCurveType" : 0 + },{ + "startValue" : 1, + "endValue" : 0, + "startTime" : 21.882, + "endTime" : 22.235, + "animationCurveType" : 0 + } + ] + }, + "elementName" : "New Base Color Change", + "tags" : [ + + ], + "elementGuid" : { + "value" : "728a362c-f814-42ca-8df3-b291c3d0b0e6" + }, + "attachedElementGuid" : { + "value" : "edf4240f-c4f5-4c04-8889-2a61a36b6bc0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "728a362c-f814-42ca-8df3-b291c3d0b0e6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.BaseColorChange_BM,Assembly-CSharp", + "colorR" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorG" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorB" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorA" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 0, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 1, + "startTime" : 21.176, + "endTime" : 21.882, + "animationCurveType" : 0 + },{ + "startValue" : 1, + "endValue" : 0, + "startTime" : 21.882, + "endTime" : 22.235, + "animationCurveType" : 0 + } + ] + }, + "elementName" : "New Base Color Change", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e88cf0bf-04a8-45bc-a868-a9959545e79d" + }, + "attachedElementGuid" : { + "value" : "f5a8a7c4-7252-4800-ba8c-0b57857f2d2b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e88cf0bf-04a8-45bc-a868-a9959545e79d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.BaseColorChange_BM,Assembly-CSharp", + "colorR" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorG" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorB" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorA" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 0, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 1, + "startTime" : 21.176, + "endTime" : 21.882, + "animationCurveType" : 0 + },{ + "startValue" : 1, + "endValue" : 0, + "startTime" : 21.882, + "endTime" : 22.235, + "animationCurveType" : 0 + } + ] + }, + "elementName" : "New Base Color Change", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0f415dbb-c055-4acd-8e4c-62b3a0f8be3d" + }, + "attachedElementGuid" : { + "value" : "94bbb730-9fc6-4079-a4f5-497d4e077a30" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0f415dbb-c055-4acd-8e4c-62b3a0f8be3d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Displacement_BM,Assembly-CSharp", + "positionX" : { + "animatedFloatList" : [ + + ] + }, + "positionY" : { + "animatedFloatList" : [ + + ] + }, + "positionZ" : { + "animatedFloatList" : [ + { + "startValue" : -400, + "endValue" : -400, + "startTime" : 0, + "endTime" : 21.176, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 0, + "startTime" : 21.176, + "endTime" : 21.882, + "animationCurveType" : 0 + } + ] + }, + "elementName" : "New Displacement", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4a6e23c4-d250-4190-82ae-3480a4f9e848" + }, + "attachedElementGuid" : { + "value" : "23b234d5-7313-4132-bb58-3b83bc91bcd6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4a6e23c4-d250-4190-82ae-3480a4f9e848" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp", + "elementName" : "note", + "tags" : [ + + ], + "elementGuid" : { + "value" : "32156bdc-dc54-4d1e-80c6-5c1027d0173b" + }, + "attachedElementGuid" : { + "value" : "7fe024ab-24d5-4837-a25a-1f289f37e920" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "32156bdc-dc54-4d1e-80c6-5c1027d0173b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "32156bdc-dc54-4d1e-80c6-5c1027d0173b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "New Track", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1f1ed3a7-24f9-4e69-8668-08538ef2114f" + }, + "attachedElementGuid" : { + "value" : "32156bdc-dc54-4d1e-80c6-5c1027d0173b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "1f1ed3a7-24f9-4e69-8668-08538ef2114f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1f1ed3a7-24f9-4e69-8668-08538ef2114f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 1, + "trackSamplingType" : 1, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "1f1ed3a7-24f9-4e69-8668-08538ef2114f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 69.176, + "trackEndTime" : 80.47, + "visibleTrackTimeLength" : 1, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "1f1ed3a7-24f9-4e69-8668-08538ef2114f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9bdebee3-95cd-47c5-b651-bff5b2bbaf83" + }, + "attachedElementGuid" : { + "value" : "1f1ed3a7-24f9-4e69-8668-08538ef2114f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 15, + "z" : 884 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9bdebee3-95cd-47c5-b651-bff5b2bbaf83" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9bdebee3-95cd-47c5-b651-bff5b2bbaf83" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "9bdebee3-95cd-47c5-b651-bff5b2bbaf83" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ce5c93f1-423a-4b0f-b117-8603e13ce5e1" + }, + "attachedElementGuid" : { + "value" : "1f1ed3a7-24f9-4e69-8668-08538ef2114f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 12, + "y" : 15, + "z" : 946 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ce5c93f1-423a-4b0f-b117-8603e13ce5e1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ce5c93f1-423a-4b0f-b117-8603e13ce5e1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ce5c93f1-423a-4b0f-b117-8603e13ce5e1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d04ed4cb-2c3e-4481-b321-a15b302f6720" + }, + "attachedElementGuid" : { + "value" : "1f1ed3a7-24f9-4e69-8668-08538ef2114f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -4, + "y" : 10, + "z" : 1008 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d04ed4cb-2c3e-4481-b321-a15b302f6720" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d04ed4cb-2c3e-4481-b321-a15b302f6720" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d04ed4cb-2c3e-4481-b321-a15b302f6720" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2169cb89-933a-4b7c-9193-1c2708c6f87c" + }, + "attachedElementGuid" : { + "value" : "1f1ed3a7-24f9-4e69-8668-08538ef2114f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -7, + "y" : 7, + "z" : 1070 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2169cb89-933a-4b7c-9193-1c2708c6f87c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2169cb89-933a-4b7c-9193-1c2708c6f87c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "2169cb89-933a-4b7c-9193-1c2708c6f87c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2bbba36d-493b-42fb-918b-eeebff54ee4d" + }, + "attachedElementGuid" : { + "value" : "1f1ed3a7-24f9-4e69-8668-08538ef2114f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 8, + "z" : 1132 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2bbba36d-493b-42fb-918b-eeebff54ee4d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2bbba36d-493b-42fb-918b-eeebff54ee4d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "2bbba36d-493b-42fb-918b-eeebff54ee4d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "New Track", + "tags" : [ + + ], + "elementGuid" : { + "value" : "86e6bf60-5692-4fa7-a4c0-e89ef3885d07" + }, + "attachedElementGuid" : { + "value" : "32156bdc-dc54-4d1e-80c6-5c1027d0173b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "86e6bf60-5692-4fa7-a4c0-e89ef3885d07" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "86e6bf60-5692-4fa7-a4c0-e89ef3885d07" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 1, + "trackSamplingType" : 1, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "86e6bf60-5692-4fa7-a4c0-e89ef3885d07" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 69.176, + "trackEndTime" : 80.47, + "visibleTrackTimeLength" : 1, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "86e6bf60-5692-4fa7-a4c0-e89ef3885d07" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "15e9b365-9074-421b-b440-1bcba678617b" + }, + "attachedElementGuid" : { + "value" : "86e6bf60-5692-4fa7-a4c0-e89ef3885d07" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 10, + "y" : 10, + "z" : 884 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "15e9b365-9074-421b-b440-1bcba678617b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "15e9b365-9074-421b-b440-1bcba678617b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "15e9b365-9074-421b-b440-1bcba678617b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e1a3c346-d2bf-4679-853e-1ff97506d780" + }, + "attachedElementGuid" : { + "value" : "86e6bf60-5692-4fa7-a4c0-e89ef3885d07" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 5, + "z" : 946 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e1a3c346-d2bf-4679-853e-1ff97506d780" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e1a3c346-d2bf-4679-853e-1ff97506d780" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e1a3c346-d2bf-4679-853e-1ff97506d780" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e23d08ec-295d-4b05-8855-926995262867" + }, + "attachedElementGuid" : { + "value" : "86e6bf60-5692-4fa7-a4c0-e89ef3885d07" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 10, + "y" : 20, + "z" : 1008 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e23d08ec-295d-4b05-8855-926995262867" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e23d08ec-295d-4b05-8855-926995262867" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e23d08ec-295d-4b05-8855-926995262867" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "76965859-16fc-4a58-aede-ef7c0a04d701" + }, + "attachedElementGuid" : { + "value" : "86e6bf60-5692-4fa7-a4c0-e89ef3885d07" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 10, + "y" : 10, + "z" : 1070 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "76965859-16fc-4a58-aede-ef7c0a04d701" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "76965859-16fc-4a58-aede-ef7c0a04d701" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "76965859-16fc-4a58-aede-ef7c0a04d701" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "476a4ee2-5a98-4e5a-bff2-f79514abb740" + }, + "attachedElementGuid" : { + "value" : "86e6bf60-5692-4fa7-a4c0-e89ef3885d07" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 8, + "z" : 1132 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "476a4ee2-5a98-4e5a-bff2-f79514abb740" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "476a4ee2-5a98-4e5a-bff2-f79514abb740" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "476a4ee2-5a98-4e5a-bff2-f79514abb740" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "New Track", + "tags" : [ + + ], + "elementGuid" : { + "value" : "61b7aa1a-69c6-4625-b166-b22cac7340e4" + }, + "attachedElementGuid" : { + "value" : "32156bdc-dc54-4d1e-80c6-5c1027d0173b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "61b7aa1a-69c6-4625-b166-b22cac7340e4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "61b7aa1a-69c6-4625-b166-b22cac7340e4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 1, + "trackSamplingType" : 1, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "61b7aa1a-69c6-4625-b166-b22cac7340e4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 69.176, + "trackEndTime" : 80.47, + "visibleTrackTimeLength" : 1, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "61b7aa1a-69c6-4625-b166-b22cac7340e4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fc28039e-fc0b-457b-9e96-864f334392cb" + }, + "attachedElementGuid" : { + "value" : "61b7aa1a-69c6-4625-b166-b22cac7340e4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 10, + "y" : 0, + "z" : 884 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "fc28039e-fc0b-457b-9e96-864f334392cb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fc28039e-fc0b-457b-9e96-864f334392cb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "fc28039e-fc0b-457b-9e96-864f334392cb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f1fb90be-e296-4d88-8e29-66d87c5d020e" + }, + "attachedElementGuid" : { + "value" : "61b7aa1a-69c6-4625-b166-b22cac7340e4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -10, + "y" : 15, + "z" : 946 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f1fb90be-e296-4d88-8e29-66d87c5d020e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f1fb90be-e296-4d88-8e29-66d87c5d020e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f1fb90be-e296-4d88-8e29-66d87c5d020e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bc49d1d6-5fcb-4062-a978-11b60e859eef" + }, + "attachedElementGuid" : { + "value" : "61b7aa1a-69c6-4625-b166-b22cac7340e4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 5, + "z" : 1008 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "bc49d1d6-5fcb-4062-a978-11b60e859eef" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bc49d1d6-5fcb-4062-a978-11b60e859eef" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "bc49d1d6-5fcb-4062-a978-11b60e859eef" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "632a5dc3-18c4-4d65-815d-162c9ee827d0" + }, + "attachedElementGuid" : { + "value" : "61b7aa1a-69c6-4625-b166-b22cac7340e4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -10, + "y" : 20, + "z" : 1070 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "632a5dc3-18c4-4d65-815d-162c9ee827d0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "632a5dc3-18c4-4d65-815d-162c9ee827d0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "632a5dc3-18c4-4d65-815d-162c9ee827d0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bb346940-8a30-42e7-96ed-5952361b833f" + }, + "attachedElementGuid" : { + "value" : "61b7aa1a-69c6-4625-b166-b22cac7340e4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 8, + "z" : 1132 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "bb346940-8a30-42e7-96ed-5952361b833f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bb346940-8a30-42e7-96ed-5952361b833f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "bb346940-8a30-42e7-96ed-5952361b833f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "67.764-91.764", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1f5f6b4b-e658-4f8a-a011-57ff7847cb94" + }, + "attachedElementGuid" : { + "value" : "4ee7f15e-c6f6-40e5-b9e8-8e4887afe797" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "1f5f6b4b-e658-4f8a-a011-57ff7847cb94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1f5f6b4b-e658-4f8a-a011-57ff7847cb94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 0, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "1f5f6b4b-e658-4f8a-a011-57ff7847cb94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 67.764, + "trackEndTime" : 91.764, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "1f5f6b4b-e658-4f8a-a011-57ff7847cb94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "08175ab5-1f56-496f-9a95-932195b12eac" + }, + "attachedElementGuid" : { + "value" : "1f5f6b4b-e658-4f8a-a011-57ff7847cb94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 12, + "z" : 836 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "08175ab5-1f56-496f-9a95-932195b12eac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "08175ab5-1f56-496f-9a95-932195b12eac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "08175ab5-1f56-496f-9a95-932195b12eac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "93c01b25-3e70-4cb6-b38f-d06906d3996a" + }, + "attachedElementGuid" : { + "value" : "1f5f6b4b-e658-4f8a-a011-57ff7847cb94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 12, + "z" : 1368 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "93c01b25-3e70-4cb6-b38f-d06906d3996a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "93c01b25-3e70-4cb6-b38f-d06906d3996a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "93c01b25-3e70-4cb6-b38f-d06906d3996a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1716c536-fd2d-4bbd-8dc6-f8ae3c5d10c5" + }, + "attachedElementGuid" : { + "value" : "1f1ed3a7-24f9-4e69-8668-08538ef2114f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1716c536-fd2d-4bbd-8dc6-f8ae3c5d10c5" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 68.74 + },{ + "value" : false, + "time" : 80.47 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "30c33f77-8f67-4238-a65e-a33db77516a1" + }, + "attachedElementGuid" : { + "value" : "1716c536-fd2d-4bbd-8dc6-f8ae3c5d10c5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "30c33f77-8f67-4238-a65e-a33db77516a1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "30c33f77-8f67-4238-a65e-a33db77516a1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "30c33f77-8f67-4238-a65e-a33db77516a1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 69.176, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "64f3aac1-2b8d-4c21-8f6b-7d1b77fef66e" + }, + "attachedElementGuid" : { + "value" : "1f1ed3a7-24f9-4e69-8668-08538ef2114f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "64f3aac1-2b8d-4c21-8f6b-7d1b77fef66e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "64f3aac1-2b8d-4c21-8f6b-7d1b77fef66e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "64f3aac1-2b8d-4c21-8f6b-7d1b77fef66e" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "005cfb40-b8c3-4fa9-8b61-68ff87c82d1b" + }, + "attachedElementGuid" : { + "value" : "64f3aac1-2b8d-4c21-8f6b-7d1b77fef66e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "005cfb40-b8c3-4fa9-8b61-68ff87c82d1b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "005cfb40-b8c3-4fa9-8b61-68ff87c82d1b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "005cfb40-b8c3-4fa9-8b61-68ff87c82d1b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "005cfb40-b8c3-4fa9-8b61-68ff87c82d1b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 70.058, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bda08c9f-5a12-41e0-ae2b-6a7919d9ed9e" + }, + "attachedElementGuid" : { + "value" : "1f1ed3a7-24f9-4e69-8668-08538ef2114f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bda08c9f-5a12-41e0-ae2b-6a7919d9ed9e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "bda08c9f-5a12-41e0-ae2b-6a7919d9ed9e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "bda08c9f-5a12-41e0-ae2b-6a7919d9ed9e" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2a31b062-a200-47dc-ab48-a0fe8c46841a" + }, + "attachedElementGuid" : { + "value" : "bda08c9f-5a12-41e0-ae2b-6a7919d9ed9e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2a31b062-a200-47dc-ab48-a0fe8c46841a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2a31b062-a200-47dc-ab48-a0fe8c46841a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "2a31b062-a200-47dc-ab48-a0fe8c46841a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "2a31b062-a200-47dc-ab48-a0fe8c46841a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "df4085fb-33e9-4cad-8beb-52bffdf4e916" + }, + "attachedElementGuid" : { + "value" : "86e6bf60-5692-4fa7-a4c0-e89ef3885d07" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "df4085fb-33e9-4cad-8beb-52bffdf4e916" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 68.74 + },{ + "value" : false, + "time" : 80.47 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0008b944-aee2-445b-ac37-4935732108a2" + }, + "attachedElementGuid" : { + "value" : "df4085fb-33e9-4cad-8beb-52bffdf4e916" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0008b944-aee2-445b-ac37-4935732108a2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0008b944-aee2-445b-ac37-4935732108a2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "0008b944-aee2-445b-ac37-4935732108a2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "adfa2f2f-670c-4ba7-8043-9b18d89a6b4f" + }, + "attachedElementGuid" : { + "value" : "61b7aa1a-69c6-4625-b166-b22cac7340e4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "adfa2f2f-670c-4ba7-8043-9b18d89a6b4f" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 68.74 + },{ + "value" : false, + "time" : 80.47 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b380904e-5ac4-4e2a-8548-c007a4651ba8" + }, + "attachedElementGuid" : { + "value" : "adfa2f2f-670c-4ba7-8043-9b18d89a6b4f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b380904e-5ac4-4e2a-8548-c007a4651ba8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b380904e-5ac4-4e2a-8548-c007a4651ba8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "b380904e-5ac4-4e2a-8548-c007a4651ba8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 69.529, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "da43adbc-c693-4ff7-b45f-b62c7e49bc0f" + }, + "attachedElementGuid" : { + "value" : "86e6bf60-5692-4fa7-a4c0-e89ef3885d07" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "da43adbc-c693-4ff7-b45f-b62c7e49bc0f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "da43adbc-c693-4ff7-b45f-b62c7e49bc0f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "da43adbc-c693-4ff7-b45f-b62c7e49bc0f" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a5e9c2c4-3229-434e-a050-11f07282cf27" + }, + "attachedElementGuid" : { + "value" : "da43adbc-c693-4ff7-b45f-b62c7e49bc0f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a5e9c2c4-3229-434e-a050-11f07282cf27" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a5e9c2c4-3229-434e-a050-11f07282cf27" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a5e9c2c4-3229-434e-a050-11f07282cf27" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "a5e9c2c4-3229-434e-a050-11f07282cf27" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 69.705, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "646a74fc-b70b-470f-9aa7-7d135f740f4d" + }, + "attachedElementGuid" : { + "value" : "86e6bf60-5692-4fa7-a4c0-e89ef3885d07" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "646a74fc-b70b-470f-9aa7-7d135f740f4d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "646a74fc-b70b-470f-9aa7-7d135f740f4d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "646a74fc-b70b-470f-9aa7-7d135f740f4d" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6e5b3043-44f8-4e7c-804e-cc3ae29933bc" + }, + "attachedElementGuid" : { + "value" : "646a74fc-b70b-470f-9aa7-7d135f740f4d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6e5b3043-44f8-4e7c-804e-cc3ae29933bc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6e5b3043-44f8-4e7c-804e-cc3ae29933bc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6e5b3043-44f8-4e7c-804e-cc3ae29933bc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "6e5b3043-44f8-4e7c-804e-cc3ae29933bc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 70.235, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "971619f8-fd67-4d6e-937b-3656a5558c68" + }, + "attachedElementGuid" : { + "value" : "86e6bf60-5692-4fa7-a4c0-e89ef3885d07" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "971619f8-fd67-4d6e-937b-3656a5558c68" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "971619f8-fd67-4d6e-937b-3656a5558c68" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "971619f8-fd67-4d6e-937b-3656a5558c68" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fd9fd105-f69c-4990-9488-b68c11927c30" + }, + "attachedElementGuid" : { + "value" : "971619f8-fd67-4d6e-937b-3656a5558c68" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "fd9fd105-f69c-4990-9488-b68c11927c30" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fd9fd105-f69c-4990-9488-b68c11927c30" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "fd9fd105-f69c-4990-9488-b68c11927c30" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "fd9fd105-f69c-4990-9488-b68c11927c30" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 70.588, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5a8b2821-45ed-40b6-978d-340d4aea659a" + }, + "attachedElementGuid" : { + "value" : "1f1ed3a7-24f9-4e69-8668-08538ef2114f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5a8b2821-45ed-40b6-978d-340d4aea659a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "5a8b2821-45ed-40b6-978d-340d4aea659a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "5a8b2821-45ed-40b6-978d-340d4aea659a" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9437674a-9df4-4193-b36e-de4e4940b42e" + }, + "attachedElementGuid" : { + "value" : "5a8b2821-45ed-40b6-978d-340d4aea659a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9437674a-9df4-4193-b36e-de4e4940b42e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9437674a-9df4-4193-b36e-de4e4940b42e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "9437674a-9df4-4193-b36e-de4e4940b42e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "9437674a-9df4-4193-b36e-de4e4940b42e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 70.941, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "edbd2678-9700-4b9d-b75d-385978d5fa91" + }, + "attachedElementGuid" : { + "value" : "61b7aa1a-69c6-4625-b166-b22cac7340e4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "edbd2678-9700-4b9d-b75d-385978d5fa91" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "edbd2678-9700-4b9d-b75d-385978d5fa91" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "edbd2678-9700-4b9d-b75d-385978d5fa91" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4d40bc2f-6dd3-47ac-a8f5-641411140bb1" + }, + "attachedElementGuid" : { + "value" : "edbd2678-9700-4b9d-b75d-385978d5fa91" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4d40bc2f-6dd3-47ac-a8f5-641411140bb1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4d40bc2f-6dd3-47ac-a8f5-641411140bb1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4d40bc2f-6dd3-47ac-a8f5-641411140bb1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "4d40bc2f-6dd3-47ac-a8f5-641411140bb1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 71.117, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "18605934-d1db-42ac-adb4-364695bc6531" + }, + "attachedElementGuid" : { + "value" : "61b7aa1a-69c6-4625-b166-b22cac7340e4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "18605934-d1db-42ac-adb4-364695bc6531" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "18605934-d1db-42ac-adb4-364695bc6531" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "18605934-d1db-42ac-adb4-364695bc6531" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6a0dd761-7c21-480d-92fc-4872a6eed536" + }, + "attachedElementGuid" : { + "value" : "18605934-d1db-42ac-adb4-364695bc6531" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6a0dd761-7c21-480d-92fc-4872a6eed536" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6a0dd761-7c21-480d-92fc-4872a6eed536" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6a0dd761-7c21-480d-92fc-4872a6eed536" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "6a0dd761-7c21-480d-92fc-4872a6eed536" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 71.647, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "688ad071-3311-4470-9937-1686fb2d4a59" + }, + "attachedElementGuid" : { + "value" : "61b7aa1a-69c6-4625-b166-b22cac7340e4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "688ad071-3311-4470-9937-1686fb2d4a59" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "688ad071-3311-4470-9937-1686fb2d4a59" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "688ad071-3311-4470-9937-1686fb2d4a59" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ca32a89a-f648-46f8-bc6a-d1a0033548fe" + }, + "attachedElementGuid" : { + "value" : "688ad071-3311-4470-9937-1686fb2d4a59" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ca32a89a-f648-46f8-bc6a-d1a0033548fe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ca32a89a-f648-46f8-bc6a-d1a0033548fe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ca32a89a-f648-46f8-bc6a-d1a0033548fe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "ca32a89a-f648-46f8-bc6a-d1a0033548fe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 71.47, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e129dcce-0a02-4dc3-9d6c-cefc3f3319ba" + }, + "attachedElementGuid" : { + "value" : "1f1ed3a7-24f9-4e69-8668-08538ef2114f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e129dcce-0a02-4dc3-9d6c-cefc3f3319ba" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "e129dcce-0a02-4dc3-9d6c-cefc3f3319ba" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "e129dcce-0a02-4dc3-9d6c-cefc3f3319ba" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8bf5da96-ae95-469c-99e2-b58809589f45" + }, + "attachedElementGuid" : { + "value" : "e129dcce-0a02-4dc3-9d6c-cefc3f3319ba" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8bf5da96-ae95-469c-99e2-b58809589f45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8bf5da96-ae95-469c-99e2-b58809589f45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8bf5da96-ae95-469c-99e2-b58809589f45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "8bf5da96-ae95-469c-99e2-b58809589f45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 72, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a5827ef5-126e-4758-afe9-11fb5df54f3d" + }, + "attachedElementGuid" : { + "value" : "86e6bf60-5692-4fa7-a4c0-e89ef3885d07" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a5827ef5-126e-4758-afe9-11fb5df54f3d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "a5827ef5-126e-4758-afe9-11fb5df54f3d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "a5827ef5-126e-4758-afe9-11fb5df54f3d" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6e2fa964-0022-4d58-8b5a-5f8d0834a827" + }, + "attachedElementGuid" : { + "value" : "a5827ef5-126e-4758-afe9-11fb5df54f3d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6e2fa964-0022-4d58-8b5a-5f8d0834a827" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6e2fa964-0022-4d58-8b5a-5f8d0834a827" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6e2fa964-0022-4d58-8b5a-5f8d0834a827" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "6e2fa964-0022-4d58-8b5a-5f8d0834a827" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 72.705, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1f829e72-5ae3-4775-a7d8-4c4b61c434c7" + }, + "attachedElementGuid" : { + "value" : "86e6bf60-5692-4fa7-a4c0-e89ef3885d07" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1f829e72-5ae3-4775-a7d8-4c4b61c434c7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "1f829e72-5ae3-4775-a7d8-4c4b61c434c7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "1f829e72-5ae3-4775-a7d8-4c4b61c434c7" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6fecb338-8b2d-475c-b31b-0a8b91accacd" + }, + "attachedElementGuid" : { + "value" : "1f829e72-5ae3-4775-a7d8-4c4b61c434c7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6fecb338-8b2d-475c-b31b-0a8b91accacd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6fecb338-8b2d-475c-b31b-0a8b91accacd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6fecb338-8b2d-475c-b31b-0a8b91accacd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "6fecb338-8b2d-475c-b31b-0a8b91accacd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 72.176, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "813ca635-0987-4ecb-bb3d-e207465e92c7" + }, + "attachedElementGuid" : { + "value" : "1f1ed3a7-24f9-4e69-8668-08538ef2114f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "813ca635-0987-4ecb-bb3d-e207465e92c7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "813ca635-0987-4ecb-bb3d-e207465e92c7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "813ca635-0987-4ecb-bb3d-e207465e92c7" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bf0cb242-8e45-45a0-bf16-a45ca20120f5" + }, + "attachedElementGuid" : { + "value" : "813ca635-0987-4ecb-bb3d-e207465e92c7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "bf0cb242-8e45-45a0-bf16-a45ca20120f5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bf0cb242-8e45-45a0-bf16-a45ca20120f5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "bf0cb242-8e45-45a0-bf16-a45ca20120f5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "bf0cb242-8e45-45a0-bf16-a45ca20120f5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 72.352, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a3196192-5ded-46b6-83f8-a6471a93ece8" + }, + "attachedElementGuid" : { + "value" : "1f1ed3a7-24f9-4e69-8668-08538ef2114f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a3196192-5ded-46b6-83f8-a6471a93ece8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "a3196192-5ded-46b6-83f8-a6471a93ece8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "a3196192-5ded-46b6-83f8-a6471a93ece8" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "24d4e604-3a57-4149-854b-924a29af2523" + }, + "attachedElementGuid" : { + "value" : "a3196192-5ded-46b6-83f8-a6471a93ece8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "24d4e604-3a57-4149-854b-924a29af2523" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "24d4e604-3a57-4149-854b-924a29af2523" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "24d4e604-3a57-4149-854b-924a29af2523" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "24d4e604-3a57-4149-854b-924a29af2523" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 72.882, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c5e2460f-8816-4c99-981c-5662ff278406" + }, + "attachedElementGuid" : { + "value" : "1f1ed3a7-24f9-4e69-8668-08538ef2114f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c5e2460f-8816-4c99-981c-5662ff278406" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "c5e2460f-8816-4c99-981c-5662ff278406" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "c5e2460f-8816-4c99-981c-5662ff278406" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d3d5b40b-88f9-4be8-a4d0-678f9b02820c" + }, + "attachedElementGuid" : { + "value" : "c5e2460f-8816-4c99-981c-5662ff278406" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d3d5b40b-88f9-4be8-a4d0-678f9b02820c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d3d5b40b-88f9-4be8-a4d0-678f9b02820c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d3d5b40b-88f9-4be8-a4d0-678f9b02820c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d3d5b40b-88f9-4be8-a4d0-678f9b02820c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 73.588, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "716b8aa4-6e44-468e-b3b2-95330ddaa152" + }, + "attachedElementGuid" : { + "value" : "61b7aa1a-69c6-4625-b166-b22cac7340e4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "716b8aa4-6e44-468e-b3b2-95330ddaa152" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "716b8aa4-6e44-468e-b3b2-95330ddaa152" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "716b8aa4-6e44-468e-b3b2-95330ddaa152" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4fa10292-97ea-43cc-9627-491fe2d5752f" + }, + "attachedElementGuid" : { + "value" : "716b8aa4-6e44-468e-b3b2-95330ddaa152" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4fa10292-97ea-43cc-9627-491fe2d5752f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4fa10292-97ea-43cc-9627-491fe2d5752f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4fa10292-97ea-43cc-9627-491fe2d5752f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "4fa10292-97ea-43cc-9627-491fe2d5752f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 73.764, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4941c2d2-fd0f-475c-8eaa-e1ed240f0c7c" + }, + "attachedElementGuid" : { + "value" : "61b7aa1a-69c6-4625-b166-b22cac7340e4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4941c2d2-fd0f-475c-8eaa-e1ed240f0c7c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "4941c2d2-fd0f-475c-8eaa-e1ed240f0c7c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "4941c2d2-fd0f-475c-8eaa-e1ed240f0c7c" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ab03e8a4-2baf-47b1-a3b9-ec9cc41bb4d5" + }, + "attachedElementGuid" : { + "value" : "4941c2d2-fd0f-475c-8eaa-e1ed240f0c7c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ab03e8a4-2baf-47b1-a3b9-ec9cc41bb4d5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ab03e8a4-2baf-47b1-a3b9-ec9cc41bb4d5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ab03e8a4-2baf-47b1-a3b9-ec9cc41bb4d5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "ab03e8a4-2baf-47b1-a3b9-ec9cc41bb4d5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 74.47, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e813774d-eba5-4ce1-8de5-876dbb9340ee" + }, + "attachedElementGuid" : { + "value" : "61b7aa1a-69c6-4625-b166-b22cac7340e4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e813774d-eba5-4ce1-8de5-876dbb9340ee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "e813774d-eba5-4ce1-8de5-876dbb9340ee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "e813774d-eba5-4ce1-8de5-876dbb9340ee" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2b5097c5-b4f4-4011-b38e-c832933b163b" + }, + "attachedElementGuid" : { + "value" : "e813774d-eba5-4ce1-8de5-876dbb9340ee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2b5097c5-b4f4-4011-b38e-c832933b163b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2b5097c5-b4f4-4011-b38e-c832933b163b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "2b5097c5-b4f4-4011-b38e-c832933b163b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "2b5097c5-b4f4-4011-b38e-c832933b163b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 73.411, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "99f17510-0d46-4cf5-a871-4291c69afe31" + }, + "attachedElementGuid" : { + "value" : "86e6bf60-5692-4fa7-a4c0-e89ef3885d07" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "99f17510-0d46-4cf5-a871-4291c69afe31" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "99f17510-0d46-4cf5-a871-4291c69afe31" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "99f17510-0d46-4cf5-a871-4291c69afe31" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "845c91c0-78fa-456d-8b9a-591ced15add3" + }, + "attachedElementGuid" : { + "value" : "99f17510-0d46-4cf5-a871-4291c69afe31" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "845c91c0-78fa-456d-8b9a-591ced15add3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "845c91c0-78fa-456d-8b9a-591ced15add3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "845c91c0-78fa-456d-8b9a-591ced15add3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "845c91c0-78fa-456d-8b9a-591ced15add3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 74.294, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ce89d0b1-0f77-4535-9d20-4b65c6637b3a" + }, + "attachedElementGuid" : { + "value" : "86e6bf60-5692-4fa7-a4c0-e89ef3885d07" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ce89d0b1-0f77-4535-9d20-4b65c6637b3a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "ce89d0b1-0f77-4535-9d20-4b65c6637b3a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "ce89d0b1-0f77-4535-9d20-4b65c6637b3a" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6c782a16-b3a7-460b-b532-04cccb23edf0" + }, + "attachedElementGuid" : { + "value" : "ce89d0b1-0f77-4535-9d20-4b65c6637b3a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6c782a16-b3a7-460b-b532-04cccb23edf0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6c782a16-b3a7-460b-b532-04cccb23edf0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6c782a16-b3a7-460b-b532-04cccb23edf0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "6c782a16-b3a7-460b-b532-04cccb23edf0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 74.823, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8e4207cd-6be0-48fc-ab97-00df75c6bdf1" + }, + "attachedElementGuid" : { + "value" : "61b7aa1a-69c6-4625-b166-b22cac7340e4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8e4207cd-6be0-48fc-ab97-00df75c6bdf1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "8e4207cd-6be0-48fc-ab97-00df75c6bdf1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "8e4207cd-6be0-48fc-ab97-00df75c6bdf1" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2d2cf077-f75f-4bb8-9238-f1a37d6fbcd6" + }, + "attachedElementGuid" : { + "value" : "8e4207cd-6be0-48fc-ab97-00df75c6bdf1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2d2cf077-f75f-4bb8-9238-f1a37d6fbcd6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2d2cf077-f75f-4bb8-9238-f1a37d6fbcd6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "2d2cf077-f75f-4bb8-9238-f1a37d6fbcd6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "2d2cf077-f75f-4bb8-9238-f1a37d6fbcd6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 75.705, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f79d1e0a-3403-4603-bf8a-ed2721cc5a84" + }, + "attachedElementGuid" : { + "value" : "61b7aa1a-69c6-4625-b166-b22cac7340e4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f79d1e0a-3403-4603-bf8a-ed2721cc5a84" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "f79d1e0a-3403-4603-bf8a-ed2721cc5a84" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "f79d1e0a-3403-4603-bf8a-ed2721cc5a84" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ef86f173-4f26-4bf4-9460-beb257d2469c" + }, + "attachedElementGuid" : { + "value" : "f79d1e0a-3403-4603-bf8a-ed2721cc5a84" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ef86f173-4f26-4bf4-9460-beb257d2469c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ef86f173-4f26-4bf4-9460-beb257d2469c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ef86f173-4f26-4bf4-9460-beb257d2469c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "ef86f173-4f26-4bf4-9460-beb257d2469c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 75, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e3d43a47-861c-451e-bba6-0ee3b4434215" + }, + "attachedElementGuid" : { + "value" : "86e6bf60-5692-4fa7-a4c0-e89ef3885d07" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e3d43a47-861c-451e-bba6-0ee3b4434215" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "e3d43a47-861c-451e-bba6-0ee3b4434215" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "e3d43a47-861c-451e-bba6-0ee3b4434215" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "83033224-4891-4e0a-87a8-278b07e3165a" + }, + "attachedElementGuid" : { + "value" : "e3d43a47-861c-451e-bba6-0ee3b4434215" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "83033224-4891-4e0a-87a8-278b07e3165a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "83033224-4891-4e0a-87a8-278b07e3165a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "83033224-4891-4e0a-87a8-278b07e3165a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "83033224-4891-4e0a-87a8-278b07e3165a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 75.176, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "510c3ff5-46b8-49cf-b3bc-c4f9e048d208" + }, + "attachedElementGuid" : { + "value" : "86e6bf60-5692-4fa7-a4c0-e89ef3885d07" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "510c3ff5-46b8-49cf-b3bc-c4f9e048d208" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "510c3ff5-46b8-49cf-b3bc-c4f9e048d208" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "510c3ff5-46b8-49cf-b3bc-c4f9e048d208" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "245d880c-b96a-47a2-b51c-abef2c313223" + }, + "attachedElementGuid" : { + "value" : "510c3ff5-46b8-49cf-b3bc-c4f9e048d208" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "245d880c-b96a-47a2-b51c-abef2c313223" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "245d880c-b96a-47a2-b51c-abef2c313223" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "245d880c-b96a-47a2-b51c-abef2c313223" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "245d880c-b96a-47a2-b51c-abef2c313223" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 75.882, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b7786dd9-d6fc-40d6-9353-66e2c0aa27ba" + }, + "attachedElementGuid" : { + "value" : "86e6bf60-5692-4fa7-a4c0-e89ef3885d07" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b7786dd9-d6fc-40d6-9353-66e2c0aa27ba" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "b7786dd9-d6fc-40d6-9353-66e2c0aa27ba" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "b7786dd9-d6fc-40d6-9353-66e2c0aa27ba" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e8a2dcf4-6bd9-4f9f-82f4-5687c730c054" + }, + "attachedElementGuid" : { + "value" : "b7786dd9-d6fc-40d6-9353-66e2c0aa27ba" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e8a2dcf4-6bd9-4f9f-82f4-5687c730c054" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e8a2dcf4-6bd9-4f9f-82f4-5687c730c054" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e8a2dcf4-6bd9-4f9f-82f4-5687c730c054" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "e8a2dcf4-6bd9-4f9f-82f4-5687c730c054" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 76.235, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c9187fa5-bd80-4ffe-a252-20581c3cb5f8" + }, + "attachedElementGuid" : { + "value" : "61b7aa1a-69c6-4625-b166-b22cac7340e4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c9187fa5-bd80-4ffe-a252-20581c3cb5f8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "c9187fa5-bd80-4ffe-a252-20581c3cb5f8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "c9187fa5-bd80-4ffe-a252-20581c3cb5f8" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1cf6e9c7-c844-4498-905d-e807aad3c9b9" + }, + "attachedElementGuid" : { + "value" : "c9187fa5-bd80-4ffe-a252-20581c3cb5f8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "1cf6e9c7-c844-4498-905d-e807aad3c9b9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1cf6e9c7-c844-4498-905d-e807aad3c9b9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "1cf6e9c7-c844-4498-905d-e807aad3c9b9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "1cf6e9c7-c844-4498-905d-e807aad3c9b9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 77.117, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a025d547-d073-41d0-8f1e-dc9612276320" + }, + "attachedElementGuid" : { + "value" : "61b7aa1a-69c6-4625-b166-b22cac7340e4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a025d547-d073-41d0-8f1e-dc9612276320" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "a025d547-d073-41d0-8f1e-dc9612276320" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "a025d547-d073-41d0-8f1e-dc9612276320" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "372f2799-9003-4df7-8daf-0303a1475b19" + }, + "attachedElementGuid" : { + "value" : "a025d547-d073-41d0-8f1e-dc9612276320" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "372f2799-9003-4df7-8daf-0303a1475b19" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "372f2799-9003-4df7-8daf-0303a1475b19" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "372f2799-9003-4df7-8daf-0303a1475b19" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "372f2799-9003-4df7-8daf-0303a1475b19" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 76.411, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "457e7d1f-a70a-44e1-9056-a894e883e9cb" + }, + "attachedElementGuid" : { + "value" : "1f1ed3a7-24f9-4e69-8668-08538ef2114f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "457e7d1f-a70a-44e1-9056-a894e883e9cb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "457e7d1f-a70a-44e1-9056-a894e883e9cb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "457e7d1f-a70a-44e1-9056-a894e883e9cb" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6fb87501-6cf7-4d43-b701-ed7b5c232d7e" + }, + "attachedElementGuid" : { + "value" : "457e7d1f-a70a-44e1-9056-a894e883e9cb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6fb87501-6cf7-4d43-b701-ed7b5c232d7e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6fb87501-6cf7-4d43-b701-ed7b5c232d7e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6fb87501-6cf7-4d43-b701-ed7b5c232d7e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "6fb87501-6cf7-4d43-b701-ed7b5c232d7e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 76.588, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4c1fe4be-d2fe-4c30-b69b-dec556d09e95" + }, + "attachedElementGuid" : { + "value" : "1f1ed3a7-24f9-4e69-8668-08538ef2114f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4c1fe4be-d2fe-4c30-b69b-dec556d09e95" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "4c1fe4be-d2fe-4c30-b69b-dec556d09e95" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "4c1fe4be-d2fe-4c30-b69b-dec556d09e95" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "34342881-eb0f-4b5a-9280-fb49a025e72d" + }, + "attachedElementGuid" : { + "value" : "4c1fe4be-d2fe-4c30-b69b-dec556d09e95" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "34342881-eb0f-4b5a-9280-fb49a025e72d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "34342881-eb0f-4b5a-9280-fb49a025e72d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "34342881-eb0f-4b5a-9280-fb49a025e72d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "34342881-eb0f-4b5a-9280-fb49a025e72d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 77.294, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fa678d30-ba35-4c5c-93a3-9c2d1784aa5b" + }, + "attachedElementGuid" : { + "value" : "1f1ed3a7-24f9-4e69-8668-08538ef2114f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fa678d30-ba35-4c5c-93a3-9c2d1784aa5b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "fa678d30-ba35-4c5c-93a3-9c2d1784aa5b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "fa678d30-ba35-4c5c-93a3-9c2d1784aa5b" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6de2ae93-a78b-48b5-8f79-2a19b55e928a" + }, + "attachedElementGuid" : { + "value" : "fa678d30-ba35-4c5c-93a3-9c2d1784aa5b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6de2ae93-a78b-48b5-8f79-2a19b55e928a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6de2ae93-a78b-48b5-8f79-2a19b55e928a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6de2ae93-a78b-48b5-8f79-2a19b55e928a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "6de2ae93-a78b-48b5-8f79-2a19b55e928a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 77.647, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fec45b8f-3c2b-4100-835e-758c860e313f" + }, + "attachedElementGuid" : { + "value" : "61b7aa1a-69c6-4625-b166-b22cac7340e4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fec45b8f-3c2b-4100-835e-758c860e313f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "fec45b8f-3c2b-4100-835e-758c860e313f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "fec45b8f-3c2b-4100-835e-758c860e313f" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0bbe4870-69a4-4e4d-b193-9eeda3070726" + }, + "attachedElementGuid" : { + "value" : "fec45b8f-3c2b-4100-835e-758c860e313f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0bbe4870-69a4-4e4d-b193-9eeda3070726" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0bbe4870-69a4-4e4d-b193-9eeda3070726" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0bbe4870-69a4-4e4d-b193-9eeda3070726" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "0bbe4870-69a4-4e4d-b193-9eeda3070726" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 78, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5161885e-8e6e-4ec7-b241-829b3f176ed6" + }, + "attachedElementGuid" : { + "value" : "61b7aa1a-69c6-4625-b166-b22cac7340e4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5161885e-8e6e-4ec7-b241-829b3f176ed6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "5161885e-8e6e-4ec7-b241-829b3f176ed6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "5161885e-8e6e-4ec7-b241-829b3f176ed6" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "221cb1f4-d492-490d-8235-07d61d76ce5f" + }, + "attachedElementGuid" : { + "value" : "5161885e-8e6e-4ec7-b241-829b3f176ed6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "221cb1f4-d492-490d-8235-07d61d76ce5f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "221cb1f4-d492-490d-8235-07d61d76ce5f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "221cb1f4-d492-490d-8235-07d61d76ce5f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "221cb1f4-d492-490d-8235-07d61d76ce5f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 78.705, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6dd7372d-0827-4538-a30f-aa287f64dbbe" + }, + "attachedElementGuid" : { + "value" : "61b7aa1a-69c6-4625-b166-b22cac7340e4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6dd7372d-0827-4538-a30f-aa287f64dbbe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "6dd7372d-0827-4538-a30f-aa287f64dbbe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "6dd7372d-0827-4538-a30f-aa287f64dbbe" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1fc41dec-4baa-45dc-a779-c8d29d769a7a" + }, + "attachedElementGuid" : { + "value" : "6dd7372d-0827-4538-a30f-aa287f64dbbe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "1fc41dec-4baa-45dc-a779-c8d29d769a7a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1fc41dec-4baa-45dc-a779-c8d29d769a7a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "1fc41dec-4baa-45dc-a779-c8d29d769a7a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "1fc41dec-4baa-45dc-a779-c8d29d769a7a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 77.823, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "35267b48-ee08-4ced-a330-03a08b8e200d" + }, + "attachedElementGuid" : { + "value" : "86e6bf60-5692-4fa7-a4c0-e89ef3885d07" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "35267b48-ee08-4ced-a330-03a08b8e200d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "35267b48-ee08-4ced-a330-03a08b8e200d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "35267b48-ee08-4ced-a330-03a08b8e200d" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d76254d7-08ae-4947-b59c-72d8cf51654d" + }, + "attachedElementGuid" : { + "value" : "35267b48-ee08-4ced-a330-03a08b8e200d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d76254d7-08ae-4947-b59c-72d8cf51654d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d76254d7-08ae-4947-b59c-72d8cf51654d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d76254d7-08ae-4947-b59c-72d8cf51654d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d76254d7-08ae-4947-b59c-72d8cf51654d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 78.529, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "981ecd4e-d45b-46f1-9dd8-46f605224e3b" + }, + "attachedElementGuid" : { + "value" : "86e6bf60-5692-4fa7-a4c0-e89ef3885d07" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "981ecd4e-d45b-46f1-9dd8-46f605224e3b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "981ecd4e-d45b-46f1-9dd8-46f605224e3b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "981ecd4e-d45b-46f1-9dd8-46f605224e3b" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "837910c5-b582-4b5d-a705-fd11e981a5e8" + }, + "attachedElementGuid" : { + "value" : "981ecd4e-d45b-46f1-9dd8-46f605224e3b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "837910c5-b582-4b5d-a705-fd11e981a5e8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "837910c5-b582-4b5d-a705-fd11e981a5e8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "837910c5-b582-4b5d-a705-fd11e981a5e8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "837910c5-b582-4b5d-a705-fd11e981a5e8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 79.058, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a2c84aa5-4faa-41f8-a7ee-019799d5f7e9" + }, + "attachedElementGuid" : { + "value" : "1f1ed3a7-24f9-4e69-8668-08538ef2114f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a2c84aa5-4faa-41f8-a7ee-019799d5f7e9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "a2c84aa5-4faa-41f8-a7ee-019799d5f7e9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "a2c84aa5-4faa-41f8-a7ee-019799d5f7e9" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "dcaa245d-ef9b-4be0-931c-8e6ec5fa0295" + }, + "attachedElementGuid" : { + "value" : "a2c84aa5-4faa-41f8-a7ee-019799d5f7e9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "dcaa245d-ef9b-4be0-931c-8e6ec5fa0295" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "dcaa245d-ef9b-4be0-931c-8e6ec5fa0295" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "dcaa245d-ef9b-4be0-931c-8e6ec5fa0295" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "dcaa245d-ef9b-4be0-931c-8e6ec5fa0295" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 79.411, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1d65c20f-fb85-4298-9bf7-fc66074ec453" + }, + "attachedElementGuid" : { + "value" : "1f1ed3a7-24f9-4e69-8668-08538ef2114f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1d65c20f-fb85-4298-9bf7-fc66074ec453" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "1d65c20f-fb85-4298-9bf7-fc66074ec453" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "1d65c20f-fb85-4298-9bf7-fc66074ec453" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9845c2fd-665c-4db8-a2ae-086188d3eb3b" + }, + "attachedElementGuid" : { + "value" : "1d65c20f-fb85-4298-9bf7-fc66074ec453" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9845c2fd-665c-4db8-a2ae-086188d3eb3b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9845c2fd-665c-4db8-a2ae-086188d3eb3b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "9845c2fd-665c-4db8-a2ae-086188d3eb3b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "9845c2fd-665c-4db8-a2ae-086188d3eb3b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 80.117, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d0659d4c-b57e-440a-bcb1-1aebb2e75a87" + }, + "attachedElementGuid" : { + "value" : "1f1ed3a7-24f9-4e69-8668-08538ef2114f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d0659d4c-b57e-440a-bcb1-1aebb2e75a87" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "d0659d4c-b57e-440a-bcb1-1aebb2e75a87" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "d0659d4c-b57e-440a-bcb1-1aebb2e75a87" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d1818165-97d1-45e4-b70d-42b46dbe5ea1" + }, + "attachedElementGuid" : { + "value" : "d0659d4c-b57e-440a-bcb1-1aebb2e75a87" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d1818165-97d1-45e4-b70d-42b46dbe5ea1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d1818165-97d1-45e4-b70d-42b46dbe5ea1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d1818165-97d1-45e4-b70d-42b46dbe5ea1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d1818165-97d1-45e4-b70d-42b46dbe5ea1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 79.235, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "317743c6-ce5d-4004-8f0c-add5df9a7cb2" + }, + "attachedElementGuid" : { + "value" : "86e6bf60-5692-4fa7-a4c0-e89ef3885d07" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "317743c6-ce5d-4004-8f0c-add5df9a7cb2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "317743c6-ce5d-4004-8f0c-add5df9a7cb2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "317743c6-ce5d-4004-8f0c-add5df9a7cb2" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "680f2bdc-72cd-4170-80f7-1fd94d44de78" + }, + "attachedElementGuid" : { + "value" : "317743c6-ce5d-4004-8f0c-add5df9a7cb2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "680f2bdc-72cd-4170-80f7-1fd94d44de78" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "680f2bdc-72cd-4170-80f7-1fd94d44de78" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "680f2bdc-72cd-4170-80f7-1fd94d44de78" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "680f2bdc-72cd-4170-80f7-1fd94d44de78" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 79.941, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a7992da8-1849-4623-a9ce-251bca45370c" + }, + "attachedElementGuid" : { + "value" : "86e6bf60-5692-4fa7-a4c0-e89ef3885d07" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a7992da8-1849-4623-a9ce-251bca45370c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "a7992da8-1849-4623-a9ce-251bca45370c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "a7992da8-1849-4623-a9ce-251bca45370c" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1ef3d44f-c77e-459d-9af6-69fe84bf9c7a" + }, + "attachedElementGuid" : { + "value" : "a7992da8-1849-4623-a9ce-251bca45370c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "1ef3d44f-c77e-459d-9af6-69fe84bf9c7a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1ef3d44f-c77e-459d-9af6-69fe84bf9c7a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "1ef3d44f-c77e-459d-9af6-69fe84bf9c7a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "1ef3d44f-c77e-459d-9af6-69fe84bf9c7a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.BaseColorChange_BM,Assembly-CSharp", + "colorR" : { + "animatedFloatList" : [ + { + "startValue" : 0.5, + "endValue" : 0.5, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorG" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorB" : { + "animatedFloatList" : [ + { + "startValue" : 0.5, + "endValue" : 0.5, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorA" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "elementName" : "New Base Color Change", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9ad342c1-6b5f-4f6d-92f5-0ff5c03bc26a" + }, + "attachedElementGuid" : { + "value" : "30c33f77-8f67-4238-a65e-a33db77516a1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9ad342c1-6b5f-4f6d-92f5-0ff5c03bc26a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.BaseColorChange_BM,Assembly-CSharp", + "colorR" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 0, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorG" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorB" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorA" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "elementName" : "New Base Color Change", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c9ec5d33-9662-4be3-ad89-983d9827107b" + }, + "attachedElementGuid" : { + "value" : "0008b944-aee2-445b-ac37-4935732108a2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c9ec5d33-9662-4be3-ad89-983d9827107b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.BaseColorChange_BM,Assembly-CSharp", + "colorR" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorG" : { + "animatedFloatList" : [ + { + "startValue" : 0.25, + "endValue" : 0.25, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorB" : { + "animatedFloatList" : [ + { + "startValue" : 0.25, + "endValue" : 0.25, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorA" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "elementName" : "New Base Color Change", + "tags" : [ + + ], + "elementGuid" : { + "value" : "dc8b9fd6-e37e-453d-8ae3-e4a364a7fd9e" + }, + "attachedElementGuid" : { + "value" : "b380904e-5ac4-4e2a-8548-c007a4651ba8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "dc8b9fd6-e37e-453d-8ae3-e4a364a7fd9e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Displacement_BM,Assembly-CSharp", + "positionX" : { + "animatedFloatList" : [ + { + "startValue" : -6, + "endValue" : 0, + "startTime" : 68.74, + "endTime" : 69.176, + "animationCurveType" : 2 + } + ] + }, + "positionY" : { + "animatedFloatList" : [ + { + "startValue" : 2, + "endValue" : 0, + "startTime" : 68.74, + "endTime" : 69.176, + "animationCurveType" : 2 + } + ] + }, + "positionZ" : { + "animatedFloatList" : [ + { + "startValue" : -5, + "endValue" : 0, + "startTime" : 68.74, + "endTime" : 69.176, + "animationCurveType" : 2 + } + ] + }, + "elementName" : "New Displacement", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fc699403-0413-4c46-884f-71544fb93bde" + }, + "attachedElementGuid" : { + "value" : "30c33f77-8f67-4238-a65e-a33db77516a1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fc699403-0413-4c46-884f-71544fb93bde" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Displacement_BM,Assembly-CSharp", + "positionX" : { + "animatedFloatList" : [ + { + "startValue" : 24, + "endValue" : 0, + "startTime" : 68.74, + "endTime" : 69.176, + "animationCurveType" : 2 + } + ] + }, + "positionY" : { + "animatedFloatList" : [ + { + "startValue" : 2, + "endValue" : 0, + "startTime" : 68.74, + "endTime" : 69.176, + "animationCurveType" : 0 + } + ] + }, + "positionZ" : { + "animatedFloatList" : [ + { + "startValue" : -12, + "endValue" : 0, + "startTime" : 68.74, + "endTime" : 69.176, + "animationCurveType" : 0 + } + ] + }, + "elementName" : "New Displacement", + "tags" : [ + + ], + "elementGuid" : { + "value" : "69f4c115-5695-4346-b826-548e77c542b4" + }, + "attachedElementGuid" : { + "value" : "0008b944-aee2-445b-ac37-4935732108a2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "69f4c115-5695-4346-b826-548e77c542b4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp", + "elementName" : "p7", + "tags" : [ + + ], + "elementGuid" : { + "value" : "15e4f58f-f04c-4e51-adfc-35220b919a5a" + }, + "attachedElementGuid" : { + "value" : "00000000-0000-0000-0000-000000000000" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "15e4f58f-f04c-4e51-adfc-35220b919a5a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "15e4f58f-f04c-4e51-adfc-35220b919a5a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "New Track", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8708730a-34e9-4f36-85a3-53723c93a098" + }, + "attachedElementGuid" : { + "value" : "15e4f58f-f04c-4e51-adfc-35220b919a5a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8708730a-34e9-4f36-85a3-53723c93a098" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8708730a-34e9-4f36-85a3-53723c93a098" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 0, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "8708730a-34e9-4f36-85a3-53723c93a098" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 80.47, + "trackEndTime" : 91.764, + "visibleTrackTimeLength" : 1, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "8708730a-34e9-4f36-85a3-53723c93a098" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7b99d848-ab15-434e-ab99-8333fe311e78" + }, + "attachedElementGuid" : { + "value" : "8708730a-34e9-4f36-85a3-53723c93a098" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 8, + "z" : 1132 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7b99d848-ab15-434e-ab99-8333fe311e78" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7b99d848-ab15-434e-ab99-8333fe311e78" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "7b99d848-ab15-434e-ab99-8333fe311e78" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4a31bdcf-b44c-4b38-b7f4-0a88fc6222c2" + }, + "attachedElementGuid" : { + "value" : "8708730a-34e9-4f36-85a3-53723c93a098" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -10, + "y" : 10, + "z" : 1194 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4a31bdcf-b44c-4b38-b7f4-0a88fc6222c2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4a31bdcf-b44c-4b38-b7f4-0a88fc6222c2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4a31bdcf-b44c-4b38-b7f4-0a88fc6222c2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8ac4f654-3731-4689-97ac-e09a26b998b3" + }, + "attachedElementGuid" : { + "value" : "8708730a-34e9-4f36-85a3-53723c93a098" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 4, + "z" : 1260 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8ac4f654-3731-4689-97ac-e09a26b998b3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8ac4f654-3731-4689-97ac-e09a26b998b3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8ac4f654-3731-4689-97ac-e09a26b998b3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "dd1093ad-a428-4229-a476-c241cf5f1f49" + }, + "attachedElementGuid" : { + "value" : "8708730a-34e9-4f36-85a3-53723c93a098" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 15, + "y" : 10, + "z" : 1324 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "dd1093ad-a428-4229-a476-c241cf5f1f49" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "dd1093ad-a428-4229-a476-c241cf5f1f49" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "dd1093ad-a428-4229-a476-c241cf5f1f49" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c0282959-f1f1-4e1b-991c-9d31d4f88170" + }, + "attachedElementGuid" : { + "value" : "8708730a-34e9-4f36-85a3-53723c93a098" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 5, + "z" : 1388 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c0282959-f1f1-4e1b-991c-9d31d4f88170" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c0282959-f1f1-4e1b-991c-9d31d4f88170" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c0282959-f1f1-4e1b-991c-9d31d4f88170" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "56dc1723-7740-48a6-8a68-7a6a4907a07b" + }, + "attachedElementGuid" : { + "value" : "8708730a-34e9-4f36-85a3-53723c93a098" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "56dc1723-7740-48a6-8a68-7a6a4907a07b" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : false, + "time" : 80.47 + },{ + "value" : false, + "time" : 91.764 + } + ] + }, + "enableProcessTime" : 0, + "headSize" : 0, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "154a31e2-9344-45a9-8d29-e286bdb2374c" + }, + "attachedElementGuid" : { + "value" : "56dc1723-7740-48a6-8a68-7a6a4907a07b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "154a31e2-9344-45a9-8d29-e286bdb2374c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "154a31e2-9344-45a9-8d29-e286bdb2374c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 0 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "154a31e2-9344-45a9-8d29-e286bdb2374c" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 80.47 + },{ + "value" : false, + "time" : 91.764 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "68654f36-b897-483e-a309-e63915813de4" + }, + "attachedElementGuid" : { + "value" : "154a31e2-9344-45a9-8d29-e286bdb2374c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -0.2, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "68654f36-b897-483e-a309-e63915813de4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "68654f36-b897-483e-a309-e63915813de4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0.5, + "g" : 1, + "b" : 0.5, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "68654f36-b897-483e-a309-e63915813de4" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 80.47 + },{ + "value" : false, + "time" : 91.764 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1a265c8b-e2e5-42ea-81b0-5eab83ff0561" + }, + "attachedElementGuid" : { + "value" : "154a31e2-9344-45a9-8d29-e286bdb2374c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0.2, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "1a265c8b-e2e5-42ea-81b0-5eab83ff0561" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1a265c8b-e2e5-42ea-81b0-5eab83ff0561" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0.5, + "g" : 1, + "b" : 0.5, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "1a265c8b-e2e5-42ea-81b0-5eab83ff0561" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Swirl_BM,Assembly-CSharp", + "eulerAngleX" : { + "animatedFloatList" : [ + + ] + }, + "eulerAngleY" : { + "animatedFloatList" : [ + + ] + }, + "eulerAngleZ" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 5400, + "startTime" : 80.47, + "endTime" : 91.764, + "animationCurveType" : 0 + } + ] + }, + "elementName" : "New Swirl", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6d677546-bc66-49cb-8a91-753acc90f0dc" + }, + "attachedElementGuid" : { + "value" : "154a31e2-9344-45a9-8d29-e286bdb2374c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6d677546-bc66-49cb-8a91-753acc90f0dc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "New Track", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f8269f39-536f-4d1e-b110-5a5c65fabb46" + }, + "attachedElementGuid" : { + "value" : "15e4f58f-f04c-4e51-adfc-35220b919a5a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f8269f39-536f-4d1e-b110-5a5c65fabb46" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f8269f39-536f-4d1e-b110-5a5c65fabb46" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 0, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "f8269f39-536f-4d1e-b110-5a5c65fabb46" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 80.47, + "trackEndTime" : 91.764, + "visibleTrackTimeLength" : 1, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "f8269f39-536f-4d1e-b110-5a5c65fabb46" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ab66c645-d6cc-480b-ad0b-5bab774810e4" + }, + "attachedElementGuid" : { + "value" : "f8269f39-536f-4d1e-b110-5a5c65fabb46" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 8, + "z" : 1132 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ab66c645-d6cc-480b-ad0b-5bab774810e4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ab66c645-d6cc-480b-ad0b-5bab774810e4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ab66c645-d6cc-480b-ad0b-5bab774810e4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f4418913-88f4-418b-be6c-12040266bb4a" + }, + "attachedElementGuid" : { + "value" : "f8269f39-536f-4d1e-b110-5a5c65fabb46" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -10, + "y" : 7, + "z" : 1194 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f4418913-88f4-418b-be6c-12040266bb4a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f4418913-88f4-418b-be6c-12040266bb4a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f4418913-88f4-418b-be6c-12040266bb4a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3bf63b77-b884-4396-9863-84abec90e135" + }, + "attachedElementGuid" : { + "value" : "f8269f39-536f-4d1e-b110-5a5c65fabb46" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 15, + "z" : 1260 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3bf63b77-b884-4396-9863-84abec90e135" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3bf63b77-b884-4396-9863-84abec90e135" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3bf63b77-b884-4396-9863-84abec90e135" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6eaa2714-9dc1-4e3f-be21-a40e1d9cdf3b" + }, + "attachedElementGuid" : { + "value" : "f8269f39-536f-4d1e-b110-5a5c65fabb46" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 10, + "y" : 5, + "z" : 1324 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6eaa2714-9dc1-4e3f-be21-a40e1d9cdf3b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6eaa2714-9dc1-4e3f-be21-a40e1d9cdf3b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6eaa2714-9dc1-4e3f-be21-a40e1d9cdf3b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f3bbd22a-7eca-4bb8-9829-560f32836bb6" + }, + "attachedElementGuid" : { + "value" : "f8269f39-536f-4d1e-b110-5a5c65fabb46" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 5, + "z" : 1388 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f3bbd22a-7eca-4bb8-9829-560f32836bb6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f3bbd22a-7eca-4bb8-9829-560f32836bb6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f3bbd22a-7eca-4bb8-9829-560f32836bb6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "77db2a5a-44a8-456f-a624-e720b0eab861" + }, + "attachedElementGuid" : { + "value" : "f8269f39-536f-4d1e-b110-5a5c65fabb46" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "77db2a5a-44a8-456f-a624-e720b0eab861" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : false, + "time" : 80.47 + },{ + "value" : false, + "time" : 91.764 + } + ] + }, + "enableProcessTime" : 0, + "headSize" : 0, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ea37f4a7-44b5-4cb2-8345-47c303612bc2" + }, + "attachedElementGuid" : { + "value" : "77db2a5a-44a8-456f-a624-e720b0eab861" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ea37f4a7-44b5-4cb2-8345-47c303612bc2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ea37f4a7-44b5-4cb2-8345-47c303612bc2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 0 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "ea37f4a7-44b5-4cb2-8345-47c303612bc2" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 80.47 + },{ + "value" : false, + "time" : 91.764 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "515bb682-522a-4718-8c3c-23650086e995" + }, + "attachedElementGuid" : { + "value" : "ea37f4a7-44b5-4cb2-8345-47c303612bc2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -0.2, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "515bb682-522a-4718-8c3c-23650086e995" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "515bb682-522a-4718-8c3c-23650086e995" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "515bb682-522a-4718-8c3c-23650086e995" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 80.47 + },{ + "value" : false, + "time" : 91.764 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "52d5bb56-7d33-4495-a2c2-45e2f22b223d" + }, + "attachedElementGuid" : { + "value" : "ea37f4a7-44b5-4cb2-8345-47c303612bc2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0.2, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "52d5bb56-7d33-4495-a2c2-45e2f22b223d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "52d5bb56-7d33-4495-a2c2-45e2f22b223d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "52d5bb56-7d33-4495-a2c2-45e2f22b223d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Swirl_BM,Assembly-CSharp", + "eulerAngleX" : { + "animatedFloatList" : [ + + ] + }, + "eulerAngleY" : { + "animatedFloatList" : [ + + ] + }, + "eulerAngleZ" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : -5400, + "startTime" : 80.47, + "endTime" : 91.764, + "animationCurveType" : 0 + } + ] + }, + "elementName" : "New Swirl", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e64bf9e0-fb64-4915-9b2b-9add4074463a" + }, + "attachedElementGuid" : { + "value" : "ea37f4a7-44b5-4cb2-8345-47c303612bc2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e64bf9e0-fb64-4915-9b2b-9add4074463a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "New Track", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bb6737c5-d721-4888-90fb-21ce6c242ee9" + }, + "attachedElementGuid" : { + "value" : "15e4f58f-f04c-4e51-adfc-35220b919a5a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "bb6737c5-d721-4888-90fb-21ce6c242ee9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bb6737c5-d721-4888-90fb-21ce6c242ee9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 0, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "bb6737c5-d721-4888-90fb-21ce6c242ee9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 80.47, + "trackEndTime" : 91.764, + "visibleTrackTimeLength" : 1, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "bb6737c5-d721-4888-90fb-21ce6c242ee9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0a8f3183-f6e3-4bfd-91e6-3830f7f271d0" + }, + "attachedElementGuid" : { + "value" : "bb6737c5-d721-4888-90fb-21ce6c242ee9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 8, + "z" : 1132 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0a8f3183-f6e3-4bfd-91e6-3830f7f271d0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0a8f3183-f6e3-4bfd-91e6-3830f7f271d0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0a8f3183-f6e3-4bfd-91e6-3830f7f271d0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3b5d4506-0877-4083-9ad2-997fefcbf1a8" + }, + "attachedElementGuid" : { + "value" : "bb6737c5-d721-4888-90fb-21ce6c242ee9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 7, + "y" : 8, + "z" : 1194 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3b5d4506-0877-4083-9ad2-997fefcbf1a8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3b5d4506-0877-4083-9ad2-997fefcbf1a8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3b5d4506-0877-4083-9ad2-997fefcbf1a8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4df2c6fd-7fb0-4d71-904a-b12b1c291960" + }, + "attachedElementGuid" : { + "value" : "bb6737c5-d721-4888-90fb-21ce6c242ee9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -10, + "y" : 10, + "z" : 1260 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4df2c6fd-7fb0-4d71-904a-b12b1c291960" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4df2c6fd-7fb0-4d71-904a-b12b1c291960" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4df2c6fd-7fb0-4d71-904a-b12b1c291960" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "837bd79b-5dde-40ab-b54e-c71705ff8bb1" + }, + "attachedElementGuid" : { + "value" : "bb6737c5-d721-4888-90fb-21ce6c242ee9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 15, + "z" : 1324 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "837bd79b-5dde-40ab-b54e-c71705ff8bb1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "837bd79b-5dde-40ab-b54e-c71705ff8bb1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "837bd79b-5dde-40ab-b54e-c71705ff8bb1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "dc5f4e19-b8d6-4a20-a9cc-67ef3a7a7cad" + }, + "attachedElementGuid" : { + "value" : "bb6737c5-d721-4888-90fb-21ce6c242ee9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 5, + "z" : 1388 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "dc5f4e19-b8d6-4a20-a9cc-67ef3a7a7cad" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "dc5f4e19-b8d6-4a20-a9cc-67ef3a7a7cad" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "dc5f4e19-b8d6-4a20-a9cc-67ef3a7a7cad" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "889f2986-6f3b-4c97-9510-04b874292b0b" + }, + "attachedElementGuid" : { + "value" : "bb6737c5-d721-4888-90fb-21ce6c242ee9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "889f2986-6f3b-4c97-9510-04b874292b0b" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : false, + "time" : 80.47 + },{ + "value" : false, + "time" : 91.764 + } + ] + }, + "enableProcessTime" : 0, + "headSize" : 0, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "382fdfca-b215-497a-b4c4-f592d72ff983" + }, + "attachedElementGuid" : { + "value" : "889f2986-6f3b-4c97-9510-04b874292b0b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "382fdfca-b215-497a-b4c4-f592d72ff983" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "382fdfca-b215-497a-b4c4-f592d72ff983" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 0 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "382fdfca-b215-497a-b4c4-f592d72ff983" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 80.47 + },{ + "value" : false, + "time" : 91.764 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "43d47229-ba25-4117-ae02-2e183366713b" + }, + "attachedElementGuid" : { + "value" : "382fdfca-b215-497a-b4c4-f592d72ff983" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -0.2, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "43d47229-ba25-4117-ae02-2e183366713b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "43d47229-ba25-4117-ae02-2e183366713b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 0.25, + "b" : 0.25, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "43d47229-ba25-4117-ae02-2e183366713b" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 80.47 + },{ + "value" : false, + "time" : 91.764 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c7c91c6d-9843-43c8-a5fe-2b95bf1f0f70" + }, + "attachedElementGuid" : { + "value" : "382fdfca-b215-497a-b4c4-f592d72ff983" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0.2, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c7c91c6d-9843-43c8-a5fe-2b95bf1f0f70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c7c91c6d-9843-43c8-a5fe-2b95bf1f0f70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 0.25, + "b" : 0.25, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "c7c91c6d-9843-43c8-a5fe-2b95bf1f0f70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Swirl_BM,Assembly-CSharp", + "eulerAngleX" : { + "animatedFloatList" : [ + + ] + }, + "eulerAngleY" : { + "animatedFloatList" : [ + + ] + }, + "eulerAngleZ" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 5400, + "startTime" : 80.47, + "endTime" : 91.764, + "animationCurveType" : 0 + } + ] + }, + "elementName" : "New Swirl", + "tags" : [ + + ], + "elementGuid" : { + "value" : "16f855ad-16ec-45bd-a841-9d4ae34dc132" + }, + "attachedElementGuid" : { + "value" : "382fdfca-b215-497a-b4c4-f592d72ff983" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "16f855ad-16ec-45bd-a841-9d4ae34dc132" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeEffectsCollection_BM,Assembly-CSharp", + "time" : 80.47, + "elementName" : "p6", + "tags" : [ + + ], + "elementGuid" : { + "value" : "86325f3d-31b7-4850-92ea-dc061312eb4b" + }, + "attachedElementGuid" : { + "value" : "e127cd4a-8578-4426-b03f-eca4e25a6ff8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "86325f3d-31b7-4850-92ea-dc061312eb4b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Prior":[ + + ],"Default":[ + { + "__type" : "Ichni.RhythmGame.Beatmap.ChromaticAberrationEffect_BM,Assembly-CSharp", + "duration" : 0.5, + "peak" : 10, + "intensityCurve" : { + "keys" : [ + { + "time" : 0, + "value" : 1, + "inTangent" : 0, + "outTangent" : 0 + },{ + "time" : 1, + "value" : 0, + "inTangent" : 0, + "outTangent" : 0 + } + ], + "preWrapMode" : 8, + "postWrapMode" : 8 + }, + "effectTime" : 0 + } + ],"Late":[ + + ] + }, + "attachedElementGuid" : { + "value" : "86325f3d-31b7-4850-92ea-dc061312eb4b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 80.47, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "78192e60-1bc9-43c0-939a-9ff4f7a80861" + }, + "attachedElementGuid" : { + "value" : "8708730a-34e9-4f36-85a3-53723c93a098" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "78192e60-1bc9-43c0-939a-9ff4f7a80861" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "78192e60-1bc9-43c0-939a-9ff4f7a80861" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "78192e60-1bc9-43c0-939a-9ff4f7a80861" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d14daf2a-4da9-4616-926a-48b6ec96c621" + }, + "attachedElementGuid" : { + "value" : "78192e60-1bc9-43c0-939a-9ff4f7a80861" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d14daf2a-4da9-4616-926a-48b6ec96c621" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d14daf2a-4da9-4616-926a-48b6ec96c621" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d14daf2a-4da9-4616-926a-48b6ec96c621" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d14daf2a-4da9-4616-926a-48b6ec96c621" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 80.647, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b3403618-0f8d-412c-ac1e-3ab73614fa48" + }, + "attachedElementGuid" : { + "value" : "8708730a-34e9-4f36-85a3-53723c93a098" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b3403618-0f8d-412c-ac1e-3ab73614fa48" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "b3403618-0f8d-412c-ac1e-3ab73614fa48" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "b3403618-0f8d-412c-ac1e-3ab73614fa48" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "aa99e80c-fa75-44b9-bc49-2b9b9b0ed991" + }, + "attachedElementGuid" : { + "value" : "b3403618-0f8d-412c-ac1e-3ab73614fa48" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "aa99e80c-fa75-44b9-bc49-2b9b9b0ed991" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "aa99e80c-fa75-44b9-bc49-2b9b9b0ed991" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "aa99e80c-fa75-44b9-bc49-2b9b9b0ed991" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "aa99e80c-fa75-44b9-bc49-2b9b9b0ed991" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 80.823, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ea1d401e-c842-44a2-ac9c-13647f7875e2" + }, + "attachedElementGuid" : { + "value" : "8708730a-34e9-4f36-85a3-53723c93a098" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ea1d401e-c842-44a2-ac9c-13647f7875e2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "ea1d401e-c842-44a2-ac9c-13647f7875e2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "ea1d401e-c842-44a2-ac9c-13647f7875e2" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5c55c567-719d-443a-b71e-67250dbf1c09" + }, + "attachedElementGuid" : { + "value" : "ea1d401e-c842-44a2-ac9c-13647f7875e2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5c55c567-719d-443a-b71e-67250dbf1c09" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5c55c567-719d-443a-b71e-67250dbf1c09" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5c55c567-719d-443a-b71e-67250dbf1c09" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "5c55c567-719d-443a-b71e-67250dbf1c09" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 81.352, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "214caa4b-7391-4809-98ad-db70d87636cb" + }, + "attachedElementGuid" : { + "value" : "f8269f39-536f-4d1e-b110-5a5c65fabb46" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "214caa4b-7391-4809-98ad-db70d87636cb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "214caa4b-7391-4809-98ad-db70d87636cb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "214caa4b-7391-4809-98ad-db70d87636cb" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "716c16a2-e2aa-4db5-bca3-d7a17ed4c514" + }, + "attachedElementGuid" : { + "value" : "214caa4b-7391-4809-98ad-db70d87636cb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "716c16a2-e2aa-4db5-bca3-d7a17ed4c514" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "716c16a2-e2aa-4db5-bca3-d7a17ed4c514" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "716c16a2-e2aa-4db5-bca3-d7a17ed4c514" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "716c16a2-e2aa-4db5-bca3-d7a17ed4c514" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 81.529, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0ae8d5f7-63e4-45ba-b478-a526d0c29699" + }, + "attachedElementGuid" : { + "value" : "f8269f39-536f-4d1e-b110-5a5c65fabb46" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0ae8d5f7-63e4-45ba-b478-a526d0c29699" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "0ae8d5f7-63e4-45ba-b478-a526d0c29699" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "0ae8d5f7-63e4-45ba-b478-a526d0c29699" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1aa93e4c-4e15-4fa4-8836-c4869fc3e216" + }, + "attachedElementGuid" : { + "value" : "0ae8d5f7-63e4-45ba-b478-a526d0c29699" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "1aa93e4c-4e15-4fa4-8836-c4869fc3e216" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1aa93e4c-4e15-4fa4-8836-c4869fc3e216" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "1aa93e4c-4e15-4fa4-8836-c4869fc3e216" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "1aa93e4c-4e15-4fa4-8836-c4869fc3e216" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 81.882, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0ae71da5-0037-4d38-b25b-6f408683f325" + }, + "attachedElementGuid" : { + "value" : "bb6737c5-d721-4888-90fb-21ce6c242ee9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0ae71da5-0037-4d38-b25b-6f408683f325" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "0ae71da5-0037-4d38-b25b-6f408683f325" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "0ae71da5-0037-4d38-b25b-6f408683f325" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5b08c9fb-3f05-4e61-8624-b568a8dcc8d4" + }, + "attachedElementGuid" : { + "value" : "0ae71da5-0037-4d38-b25b-6f408683f325" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5b08c9fb-3f05-4e61-8624-b568a8dcc8d4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5b08c9fb-3f05-4e61-8624-b568a8dcc8d4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5b08c9fb-3f05-4e61-8624-b568a8dcc8d4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "5b08c9fb-3f05-4e61-8624-b568a8dcc8d4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 82.058, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3660ab1e-bf96-4c93-ad3e-dec18260feac" + }, + "attachedElementGuid" : { + "value" : "bb6737c5-d721-4888-90fb-21ce6c242ee9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3660ab1e-bf96-4c93-ad3e-dec18260feac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "3660ab1e-bf96-4c93-ad3e-dec18260feac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "3660ab1e-bf96-4c93-ad3e-dec18260feac" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6a630bbd-8616-452d-8b61-4c4569f85869" + }, + "attachedElementGuid" : { + "value" : "3660ab1e-bf96-4c93-ad3e-dec18260feac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6a630bbd-8616-452d-8b61-4c4569f85869" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6a630bbd-8616-452d-8b61-4c4569f85869" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6a630bbd-8616-452d-8b61-4c4569f85869" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "6a630bbd-8616-452d-8b61-4c4569f85869" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 82.235, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "75805676-e5ad-49d2-8ee6-3db721594817" + }, + "attachedElementGuid" : { + "value" : "bb6737c5-d721-4888-90fb-21ce6c242ee9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "75805676-e5ad-49d2-8ee6-3db721594817" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "75805676-e5ad-49d2-8ee6-3db721594817" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "75805676-e5ad-49d2-8ee6-3db721594817" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "aebc2801-0cf3-4c9b-a405-490f16e0860f" + }, + "attachedElementGuid" : { + "value" : "75805676-e5ad-49d2-8ee6-3db721594817" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "aebc2801-0cf3-4c9b-a405-490f16e0860f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "aebc2801-0cf3-4c9b-a405-490f16e0860f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "aebc2801-0cf3-4c9b-a405-490f16e0860f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "aebc2801-0cf3-4c9b-a405-490f16e0860f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 82.764, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "431c5165-52b5-427a-aa22-308a406c7217" + }, + "attachedElementGuid" : { + "value" : "f8269f39-536f-4d1e-b110-5a5c65fabb46" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "431c5165-52b5-427a-aa22-308a406c7217" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "431c5165-52b5-427a-aa22-308a406c7217" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "431c5165-52b5-427a-aa22-308a406c7217" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "60ac52a4-dfaa-4e90-8e3a-45015d489dd1" + }, + "attachedElementGuid" : { + "value" : "431c5165-52b5-427a-aa22-308a406c7217" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "60ac52a4-dfaa-4e90-8e3a-45015d489dd1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "60ac52a4-dfaa-4e90-8e3a-45015d489dd1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "60ac52a4-dfaa-4e90-8e3a-45015d489dd1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "60ac52a4-dfaa-4e90-8e3a-45015d489dd1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 82.941, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "80faa440-8ba5-4088-ae20-5c6dabcb15cb" + }, + "attachedElementGuid" : { + "value" : "f8269f39-536f-4d1e-b110-5a5c65fabb46" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "80faa440-8ba5-4088-ae20-5c6dabcb15cb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "80faa440-8ba5-4088-ae20-5c6dabcb15cb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "80faa440-8ba5-4088-ae20-5c6dabcb15cb" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a29ff039-a677-4e2c-9436-a033de3d9576" + }, + "attachedElementGuid" : { + "value" : "80faa440-8ba5-4088-ae20-5c6dabcb15cb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a29ff039-a677-4e2c-9436-a033de3d9576" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a29ff039-a677-4e2c-9436-a033de3d9576" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a29ff039-a677-4e2c-9436-a033de3d9576" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "a29ff039-a677-4e2c-9436-a033de3d9576" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 83.294, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6848ee3c-f07c-40ba-ae0b-fc817d8e0791" + }, + "attachedElementGuid" : { + "value" : "f8269f39-536f-4d1e-b110-5a5c65fabb46" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6848ee3c-f07c-40ba-ae0b-fc817d8e0791" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "6848ee3c-f07c-40ba-ae0b-fc817d8e0791" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "6848ee3c-f07c-40ba-ae0b-fc817d8e0791" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1e3f9d17-8806-4937-a440-764c1e0186dc" + }, + "attachedElementGuid" : { + "value" : "6848ee3c-f07c-40ba-ae0b-fc817d8e0791" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "1e3f9d17-8806-4937-a440-764c1e0186dc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1e3f9d17-8806-4937-a440-764c1e0186dc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "1e3f9d17-8806-4937-a440-764c1e0186dc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "1e3f9d17-8806-4937-a440-764c1e0186dc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 83.47, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bc8e762f-b23c-42c9-98c8-ebbf6a0ba6a5" + }, + "attachedElementGuid" : { + "value" : "f8269f39-536f-4d1e-b110-5a5c65fabb46" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bc8e762f-b23c-42c9-98c8-ebbf6a0ba6a5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "bc8e762f-b23c-42c9-98c8-ebbf6a0ba6a5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "bc8e762f-b23c-42c9-98c8-ebbf6a0ba6a5" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "63e70447-de1f-434a-a226-b9a5ef459c20" + }, + "attachedElementGuid" : { + "value" : "bc8e762f-b23c-42c9-98c8-ebbf6a0ba6a5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "63e70447-de1f-434a-a226-b9a5ef459c20" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "63e70447-de1f-434a-a226-b9a5ef459c20" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "63e70447-de1f-434a-a226-b9a5ef459c20" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "63e70447-de1f-434a-a226-b9a5ef459c20" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 83.647, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "82e7c516-3ea5-4f0c-99cd-76a810d3abb4" + }, + "attachedElementGuid" : { + "value" : "f8269f39-536f-4d1e-b110-5a5c65fabb46" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "82e7c516-3ea5-4f0c-99cd-76a810d3abb4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "82e7c516-3ea5-4f0c-99cd-76a810d3abb4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "82e7c516-3ea5-4f0c-99cd-76a810d3abb4" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8d2ca389-824f-43ea-9d61-b96ec75e029b" + }, + "attachedElementGuid" : { + "value" : "82e7c516-3ea5-4f0c-99cd-76a810d3abb4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8d2ca389-824f-43ea-9d61-b96ec75e029b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8d2ca389-824f-43ea-9d61-b96ec75e029b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8d2ca389-824f-43ea-9d61-b96ec75e029b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "8d2ca389-824f-43ea-9d61-b96ec75e029b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 84.176, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1de04904-6bc4-4654-843d-2d8d1755335c" + }, + "attachedElementGuid" : { + "value" : "8708730a-34e9-4f36-85a3-53723c93a098" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1de04904-6bc4-4654-843d-2d8d1755335c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "1de04904-6bc4-4654-843d-2d8d1755335c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "1de04904-6bc4-4654-843d-2d8d1755335c" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "57df9319-f4f5-45e2-a9fa-037f9d6a8c73" + }, + "attachedElementGuid" : { + "value" : "1de04904-6bc4-4654-843d-2d8d1755335c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "57df9319-f4f5-45e2-a9fa-037f9d6a8c73" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "57df9319-f4f5-45e2-a9fa-037f9d6a8c73" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "57df9319-f4f5-45e2-a9fa-037f9d6a8c73" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "57df9319-f4f5-45e2-a9fa-037f9d6a8c73" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 84.352, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8dbd4340-d828-4a4f-b539-a1ae0302b767" + }, + "attachedElementGuid" : { + "value" : "8708730a-34e9-4f36-85a3-53723c93a098" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8dbd4340-d828-4a4f-b539-a1ae0302b767" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "8dbd4340-d828-4a4f-b539-a1ae0302b767" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "8dbd4340-d828-4a4f-b539-a1ae0302b767" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0d0237dd-2d76-4e68-9448-70d78f1ac1d9" + }, + "attachedElementGuid" : { + "value" : "8dbd4340-d828-4a4f-b539-a1ae0302b767" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0d0237dd-2d76-4e68-9448-70d78f1ac1d9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0d0237dd-2d76-4e68-9448-70d78f1ac1d9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0d0237dd-2d76-4e68-9448-70d78f1ac1d9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "0d0237dd-2d76-4e68-9448-70d78f1ac1d9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 84.705, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f1daacd4-cf33-4ed3-85c6-834902e7238f" + }, + "attachedElementGuid" : { + "value" : "f8269f39-536f-4d1e-b110-5a5c65fabb46" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f1daacd4-cf33-4ed3-85c6-834902e7238f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "f1daacd4-cf33-4ed3-85c6-834902e7238f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "f1daacd4-cf33-4ed3-85c6-834902e7238f" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "371e9dac-8028-4354-9e1c-429ecb5a016f" + }, + "attachedElementGuid" : { + "value" : "f1daacd4-cf33-4ed3-85c6-834902e7238f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "371e9dac-8028-4354-9e1c-429ecb5a016f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "371e9dac-8028-4354-9e1c-429ecb5a016f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "371e9dac-8028-4354-9e1c-429ecb5a016f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "371e9dac-8028-4354-9e1c-429ecb5a016f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 84.882, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "47b2db75-8711-4b05-8653-50e7ebb4e572" + }, + "attachedElementGuid" : { + "value" : "f8269f39-536f-4d1e-b110-5a5c65fabb46" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "47b2db75-8711-4b05-8653-50e7ebb4e572" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "47b2db75-8711-4b05-8653-50e7ebb4e572" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "47b2db75-8711-4b05-8653-50e7ebb4e572" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1185b642-e4be-4303-b712-391a36cd4ad1" + }, + "attachedElementGuid" : { + "value" : "47b2db75-8711-4b05-8653-50e7ebb4e572" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "1185b642-e4be-4303-b712-391a36cd4ad1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1185b642-e4be-4303-b712-391a36cd4ad1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "1185b642-e4be-4303-b712-391a36cd4ad1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "1185b642-e4be-4303-b712-391a36cd4ad1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 85.058, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3581891d-6bf5-44ed-89d7-a2ded7677c14" + }, + "attachedElementGuid" : { + "value" : "f8269f39-536f-4d1e-b110-5a5c65fabb46" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3581891d-6bf5-44ed-89d7-a2ded7677c14" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "3581891d-6bf5-44ed-89d7-a2ded7677c14" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "3581891d-6bf5-44ed-89d7-a2ded7677c14" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "86c9b82c-053c-486d-b45b-a2dda6afe118" + }, + "attachedElementGuid" : { + "value" : "3581891d-6bf5-44ed-89d7-a2ded7677c14" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "86c9b82c-053c-486d-b45b-a2dda6afe118" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "86c9b82c-053c-486d-b45b-a2dda6afe118" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "86c9b82c-053c-486d-b45b-a2dda6afe118" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "86c9b82c-053c-486d-b45b-a2dda6afe118" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 85.588, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b8b92640-3bf7-4bf0-88f2-cd86a823abae" + }, + "attachedElementGuid" : { + "value" : "bb6737c5-d721-4888-90fb-21ce6c242ee9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b8b92640-3bf7-4bf0-88f2-cd86a823abae" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "b8b92640-3bf7-4bf0-88f2-cd86a823abae" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "b8b92640-3bf7-4bf0-88f2-cd86a823abae" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4d2a968f-48c1-47d8-be7c-7f8f581d5dde" + }, + "attachedElementGuid" : { + "value" : "b8b92640-3bf7-4bf0-88f2-cd86a823abae" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4d2a968f-48c1-47d8-be7c-7f8f581d5dde" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4d2a968f-48c1-47d8-be7c-7f8f581d5dde" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4d2a968f-48c1-47d8-be7c-7f8f581d5dde" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "4d2a968f-48c1-47d8-be7c-7f8f581d5dde" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 85.764, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ff282c1c-c0a9-4949-a4a3-e02e072acee5" + }, + "attachedElementGuid" : { + "value" : "bb6737c5-d721-4888-90fb-21ce6c242ee9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ff282c1c-c0a9-4949-a4a3-e02e072acee5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "ff282c1c-c0a9-4949-a4a3-e02e072acee5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "ff282c1c-c0a9-4949-a4a3-e02e072acee5" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a6eb2d54-b64b-4dce-a6b0-bbafaee1d798" + }, + "attachedElementGuid" : { + "value" : "ff282c1c-c0a9-4949-a4a3-e02e072acee5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a6eb2d54-b64b-4dce-a6b0-bbafaee1d798" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a6eb2d54-b64b-4dce-a6b0-bbafaee1d798" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a6eb2d54-b64b-4dce-a6b0-bbafaee1d798" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "a6eb2d54-b64b-4dce-a6b0-bbafaee1d798" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 86.117, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "16105794-4289-41aa-92ac-912ce0fd97bf" + }, + "attachedElementGuid" : { + "value" : "8708730a-34e9-4f36-85a3-53723c93a098" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "16105794-4289-41aa-92ac-912ce0fd97bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "16105794-4289-41aa-92ac-912ce0fd97bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "16105794-4289-41aa-92ac-912ce0fd97bf" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0686f71f-ceab-4df8-95bf-36c8448865fe" + }, + "attachedElementGuid" : { + "value" : "16105794-4289-41aa-92ac-912ce0fd97bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0686f71f-ceab-4df8-95bf-36c8448865fe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0686f71f-ceab-4df8-95bf-36c8448865fe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0686f71f-ceab-4df8-95bf-36c8448865fe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "0686f71f-ceab-4df8-95bf-36c8448865fe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 86.294, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1b2ba6c7-265a-49f0-abac-32e9d06e7b5e" + }, + "attachedElementGuid" : { + "value" : "8708730a-34e9-4f36-85a3-53723c93a098" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1b2ba6c7-265a-49f0-abac-32e9d06e7b5e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "1b2ba6c7-265a-49f0-abac-32e9d06e7b5e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "1b2ba6c7-265a-49f0-abac-32e9d06e7b5e" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "678da152-a9dd-4931-b663-e3a3603a2040" + }, + "attachedElementGuid" : { + "value" : "1b2ba6c7-265a-49f0-abac-32e9d06e7b5e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "678da152-a9dd-4931-b663-e3a3603a2040" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "678da152-a9dd-4931-b663-e3a3603a2040" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "678da152-a9dd-4931-b663-e3a3603a2040" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "678da152-a9dd-4931-b663-e3a3603a2040" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 86.47, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2b360d17-ce5a-4de4-b1c7-3bc6b159e3dd" + }, + "attachedElementGuid" : { + "value" : "8708730a-34e9-4f36-85a3-53723c93a098" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2b360d17-ce5a-4de4-b1c7-3bc6b159e3dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "2b360d17-ce5a-4de4-b1c7-3bc6b159e3dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "2b360d17-ce5a-4de4-b1c7-3bc6b159e3dd" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5202ab83-60ef-485a-bf18-cb7787d456e3" + }, + "attachedElementGuid" : { + "value" : "2b360d17-ce5a-4de4-b1c7-3bc6b159e3dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5202ab83-60ef-485a-bf18-cb7787d456e3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5202ab83-60ef-485a-bf18-cb7787d456e3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5202ab83-60ef-485a-bf18-cb7787d456e3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "5202ab83-60ef-485a-bf18-cb7787d456e3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 87, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cd0ef8bf-eb64-4239-9a30-77cf58263816" + }, + "attachedElementGuid" : { + "value" : "f8269f39-536f-4d1e-b110-5a5c65fabb46" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "cd0ef8bf-eb64-4239-9a30-77cf58263816" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "cd0ef8bf-eb64-4239-9a30-77cf58263816" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "cd0ef8bf-eb64-4239-9a30-77cf58263816" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a733bbbb-8e3f-49ab-a4a2-154ffdbbb5f2" + }, + "attachedElementGuid" : { + "value" : "cd0ef8bf-eb64-4239-9a30-77cf58263816" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a733bbbb-8e3f-49ab-a4a2-154ffdbbb5f2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a733bbbb-8e3f-49ab-a4a2-154ffdbbb5f2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a733bbbb-8e3f-49ab-a4a2-154ffdbbb5f2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "a733bbbb-8e3f-49ab-a4a2-154ffdbbb5f2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 87.176, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3e961f2a-4b73-4fc7-b59b-8abdba8e788a" + }, + "attachedElementGuid" : { + "value" : "f8269f39-536f-4d1e-b110-5a5c65fabb46" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3e961f2a-4b73-4fc7-b59b-8abdba8e788a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "3e961f2a-4b73-4fc7-b59b-8abdba8e788a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "3e961f2a-4b73-4fc7-b59b-8abdba8e788a" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f0c210fb-e99c-4509-86b3-b39adfec2f6d" + }, + "attachedElementGuid" : { + "value" : "3e961f2a-4b73-4fc7-b59b-8abdba8e788a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f0c210fb-e99c-4509-86b3-b39adfec2f6d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f0c210fb-e99c-4509-86b3-b39adfec2f6d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f0c210fb-e99c-4509-86b3-b39adfec2f6d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "f0c210fb-e99c-4509-86b3-b39adfec2f6d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 87.529, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b6021960-d4a2-471c-bea4-f54c120eb230" + }, + "attachedElementGuid" : { + "value" : "bb6737c5-d721-4888-90fb-21ce6c242ee9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b6021960-d4a2-471c-bea4-f54c120eb230" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "b6021960-d4a2-471c-bea4-f54c120eb230" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "b6021960-d4a2-471c-bea4-f54c120eb230" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6f1ff001-62c5-4faa-bd3f-890badfdbaab" + }, + "attachedElementGuid" : { + "value" : "b6021960-d4a2-471c-bea4-f54c120eb230" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6f1ff001-62c5-4faa-bd3f-890badfdbaab" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6f1ff001-62c5-4faa-bd3f-890badfdbaab" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6f1ff001-62c5-4faa-bd3f-890badfdbaab" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "6f1ff001-62c5-4faa-bd3f-890badfdbaab" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 87.705, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "dea3ab95-93bc-4963-ba16-19f173fe75d5" + }, + "attachedElementGuid" : { + "value" : "bb6737c5-d721-4888-90fb-21ce6c242ee9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "dea3ab95-93bc-4963-ba16-19f173fe75d5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "dea3ab95-93bc-4963-ba16-19f173fe75d5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "dea3ab95-93bc-4963-ba16-19f173fe75d5" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "947d9936-eb81-4600-af58-1135338c0eec" + }, + "attachedElementGuid" : { + "value" : "dea3ab95-93bc-4963-ba16-19f173fe75d5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "947d9936-eb81-4600-af58-1135338c0eec" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "947d9936-eb81-4600-af58-1135338c0eec" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "947d9936-eb81-4600-af58-1135338c0eec" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "947d9936-eb81-4600-af58-1135338c0eec" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 87.882, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "df8430b1-0678-4637-9a59-9ef3c7e2a228" + }, + "attachedElementGuid" : { + "value" : "bb6737c5-d721-4888-90fb-21ce6c242ee9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "df8430b1-0678-4637-9a59-9ef3c7e2a228" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "df8430b1-0678-4637-9a59-9ef3c7e2a228" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "df8430b1-0678-4637-9a59-9ef3c7e2a228" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "96ee491e-d014-4205-8813-909a46c7d5c6" + }, + "attachedElementGuid" : { + "value" : "df8430b1-0678-4637-9a59-9ef3c7e2a228" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "96ee491e-d014-4205-8813-909a46c7d5c6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "96ee491e-d014-4205-8813-909a46c7d5c6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "96ee491e-d014-4205-8813-909a46c7d5c6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "96ee491e-d014-4205-8813-909a46c7d5c6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 88.411, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b5b56313-00f4-4e90-a78d-39033f83f4ef" + }, + "attachedElementGuid" : { + "value" : "f8269f39-536f-4d1e-b110-5a5c65fabb46" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b5b56313-00f4-4e90-a78d-39033f83f4ef" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "b5b56313-00f4-4e90-a78d-39033f83f4ef" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "b5b56313-00f4-4e90-a78d-39033f83f4ef" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "12ba5108-1024-4aa6-9390-c87c392cfbb8" + }, + "attachedElementGuid" : { + "value" : "b5b56313-00f4-4e90-a78d-39033f83f4ef" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "12ba5108-1024-4aa6-9390-c87c392cfbb8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "12ba5108-1024-4aa6-9390-c87c392cfbb8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "12ba5108-1024-4aa6-9390-c87c392cfbb8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "12ba5108-1024-4aa6-9390-c87c392cfbb8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 88.588, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "11a042ad-af24-4d7a-be56-6b73a8d1639e" + }, + "attachedElementGuid" : { + "value" : "f8269f39-536f-4d1e-b110-5a5c65fabb46" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "11a042ad-af24-4d7a-be56-6b73a8d1639e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "11a042ad-af24-4d7a-be56-6b73a8d1639e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "11a042ad-af24-4d7a-be56-6b73a8d1639e" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d211553b-8cd5-46d4-80fa-aee64a5eebec" + }, + "attachedElementGuid" : { + "value" : "11a042ad-af24-4d7a-be56-6b73a8d1639e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d211553b-8cd5-46d4-80fa-aee64a5eebec" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d211553b-8cd5-46d4-80fa-aee64a5eebec" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d211553b-8cd5-46d4-80fa-aee64a5eebec" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d211553b-8cd5-46d4-80fa-aee64a5eebec" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 88.941, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "98dc2297-b021-4fd9-9fab-b81e0a457aa1" + }, + "attachedElementGuid" : { + "value" : "bb6737c5-d721-4888-90fb-21ce6c242ee9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "98dc2297-b021-4fd9-9fab-b81e0a457aa1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "98dc2297-b021-4fd9-9fab-b81e0a457aa1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "98dc2297-b021-4fd9-9fab-b81e0a457aa1" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bcf05036-5344-4743-828a-192e96dc7673" + }, + "attachedElementGuid" : { + "value" : "98dc2297-b021-4fd9-9fab-b81e0a457aa1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "bcf05036-5344-4743-828a-192e96dc7673" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bcf05036-5344-4743-828a-192e96dc7673" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "bcf05036-5344-4743-828a-192e96dc7673" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "bcf05036-5344-4743-828a-192e96dc7673" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 89.117, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "908a63d6-9ad3-4343-bcba-75a0b10509ab" + }, + "attachedElementGuid" : { + "value" : "bb6737c5-d721-4888-90fb-21ce6c242ee9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "908a63d6-9ad3-4343-bcba-75a0b10509ab" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "908a63d6-9ad3-4343-bcba-75a0b10509ab" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "908a63d6-9ad3-4343-bcba-75a0b10509ab" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "917ab879-65b5-45f2-9c57-9a2d18b853b0" + }, + "attachedElementGuid" : { + "value" : "908a63d6-9ad3-4343-bcba-75a0b10509ab" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "917ab879-65b5-45f2-9c57-9a2d18b853b0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "917ab879-65b5-45f2-9c57-9a2d18b853b0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "917ab879-65b5-45f2-9c57-9a2d18b853b0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "917ab879-65b5-45f2-9c57-9a2d18b853b0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 89.294, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4a1181a1-3b60-42b9-93ff-c2f8bf523740" + }, + "attachedElementGuid" : { + "value" : "bb6737c5-d721-4888-90fb-21ce6c242ee9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4a1181a1-3b60-42b9-93ff-c2f8bf523740" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "4a1181a1-3b60-42b9-93ff-c2f8bf523740" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "4a1181a1-3b60-42b9-93ff-c2f8bf523740" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8cddfcef-a4e2-4b1c-b050-7dfc9183055d" + }, + "attachedElementGuid" : { + "value" : "4a1181a1-3b60-42b9-93ff-c2f8bf523740" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8cddfcef-a4e2-4b1c-b050-7dfc9183055d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8cddfcef-a4e2-4b1c-b050-7dfc9183055d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8cddfcef-a4e2-4b1c-b050-7dfc9183055d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "8cddfcef-a4e2-4b1c-b050-7dfc9183055d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 89.823, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6b27079d-9363-4d16-a40f-7fb1658bbb25" + }, + "attachedElementGuid" : { + "value" : "f8269f39-536f-4d1e-b110-5a5c65fabb46" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6b27079d-9363-4d16-a40f-7fb1658bbb25" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "6b27079d-9363-4d16-a40f-7fb1658bbb25" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "6b27079d-9363-4d16-a40f-7fb1658bbb25" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "acd733ec-ad85-490f-a3c2-9e35a395bd30" + }, + "attachedElementGuid" : { + "value" : "6b27079d-9363-4d16-a40f-7fb1658bbb25" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "acd733ec-ad85-490f-a3c2-9e35a395bd30" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "acd733ec-ad85-490f-a3c2-9e35a395bd30" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "acd733ec-ad85-490f-a3c2-9e35a395bd30" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "acd733ec-ad85-490f-a3c2-9e35a395bd30" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 90, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "66b3124e-f707-4f2a-b795-20ad6c09c436" + }, + "attachedElementGuid" : { + "value" : "f8269f39-536f-4d1e-b110-5a5c65fabb46" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "66b3124e-f707-4f2a-b795-20ad6c09c436" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "66b3124e-f707-4f2a-b795-20ad6c09c436" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "66b3124e-f707-4f2a-b795-20ad6c09c436" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "647c8678-a977-4106-873e-4017b577f3a9" + }, + "attachedElementGuid" : { + "value" : "66b3124e-f707-4f2a-b795-20ad6c09c436" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "647c8678-a977-4106-873e-4017b577f3a9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "647c8678-a977-4106-873e-4017b577f3a9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "647c8678-a977-4106-873e-4017b577f3a9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "647c8678-a977-4106-873e-4017b577f3a9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 90.352, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "19987ade-3fe9-4268-8170-65d74581b355" + }, + "attachedElementGuid" : { + "value" : "8708730a-34e9-4f36-85a3-53723c93a098" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "19987ade-3fe9-4268-8170-65d74581b355" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "19987ade-3fe9-4268-8170-65d74581b355" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "19987ade-3fe9-4268-8170-65d74581b355" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d4e9e5e5-aaaa-4983-875a-8acaca965ff1" + }, + "attachedElementGuid" : { + "value" : "19987ade-3fe9-4268-8170-65d74581b355" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d4e9e5e5-aaaa-4983-875a-8acaca965ff1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d4e9e5e5-aaaa-4983-875a-8acaca965ff1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d4e9e5e5-aaaa-4983-875a-8acaca965ff1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d4e9e5e5-aaaa-4983-875a-8acaca965ff1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 90.529, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f6576dbc-5493-4b29-9d44-d449ca08bc9d" + }, + "attachedElementGuid" : { + "value" : "8708730a-34e9-4f36-85a3-53723c93a098" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f6576dbc-5493-4b29-9d44-d449ca08bc9d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "f6576dbc-5493-4b29-9d44-d449ca08bc9d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "f6576dbc-5493-4b29-9d44-d449ca08bc9d" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3474bb92-6a16-461b-8a00-32f2c7834eab" + }, + "attachedElementGuid" : { + "value" : "f6576dbc-5493-4b29-9d44-d449ca08bc9d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3474bb92-6a16-461b-8a00-32f2c7834eab" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3474bb92-6a16-461b-8a00-32f2c7834eab" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3474bb92-6a16-461b-8a00-32f2c7834eab" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "3474bb92-6a16-461b-8a00-32f2c7834eab" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 90.705, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a49f6df7-a8bc-459c-8221-e7cb48eac1dc" + }, + "attachedElementGuid" : { + "value" : "8708730a-34e9-4f36-85a3-53723c93a098" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a49f6df7-a8bc-459c-8221-e7cb48eac1dc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "a49f6df7-a8bc-459c-8221-e7cb48eac1dc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "a49f6df7-a8bc-459c-8221-e7cb48eac1dc" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "462ffa43-a3a3-4aea-b43c-ec17968087c1" + }, + "attachedElementGuid" : { + "value" : "a49f6df7-a8bc-459c-8221-e7cb48eac1dc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "462ffa43-a3a3-4aea-b43c-ec17968087c1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "462ffa43-a3a3-4aea-b43c-ec17968087c1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "462ffa43-a3a3-4aea-b43c-ec17968087c1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "462ffa43-a3a3-4aea-b43c-ec17968087c1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 91.235, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "83a71f3f-2cc9-482b-9c3a-78b5231e95bf" + }, + "attachedElementGuid" : { + "value" : "f8269f39-536f-4d1e-b110-5a5c65fabb46" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "83a71f3f-2cc9-482b-9c3a-78b5231e95bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "83a71f3f-2cc9-482b-9c3a-78b5231e95bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "83a71f3f-2cc9-482b-9c3a-78b5231e95bf" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "961914cb-9e57-4aa7-b7cb-932350fbe20a" + }, + "attachedElementGuid" : { + "value" : "83a71f3f-2cc9-482b-9c3a-78b5231e95bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "961914cb-9e57-4aa7-b7cb-932350fbe20a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "961914cb-9e57-4aa7-b7cb-932350fbe20a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "961914cb-9e57-4aa7-b7cb-932350fbe20a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "961914cb-9e57-4aa7-b7cb-932350fbe20a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 91.411, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "99b02bfc-5e3e-4e93-b259-10b91248beeb" + }, + "attachedElementGuid" : { + "value" : "f8269f39-536f-4d1e-b110-5a5c65fabb46" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "99b02bfc-5e3e-4e93-b259-10b91248beeb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "99b02bfc-5e3e-4e93-b259-10b91248beeb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "99b02bfc-5e3e-4e93-b259-10b91248beeb" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0a4310c5-4fcd-463f-a55a-0c69406ce7ab" + }, + "attachedElementGuid" : { + "value" : "99b02bfc-5e3e-4e93-b259-10b91248beeb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0a4310c5-4fcd-463f-a55a-0c69406ce7ab" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0a4310c5-4fcd-463f-a55a-0c69406ce7ab" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0a4310c5-4fcd-463f-a55a-0c69406ce7ab" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "0a4310c5-4fcd-463f-a55a-0c69406ce7ab" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp", + "elementName" : "p8\/\/比p1还粗糙\/\/", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c3c1a931-d658-4ac1-8516-5cae64c80583" + }, + "attachedElementGuid" : { + "value" : "00000000-0000-0000-0000-000000000000" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c3c1a931-d658-4ac1-8516-5cae64c80583" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c3c1a931-d658-4ac1-8516-5cae64c80583" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp", + "elementName" : "note", + "tags" : [ + + ], + "elementGuid" : { + "value" : "70c6d91f-3ef1-4506-8147-a8097d64f138" + }, + "attachedElementGuid" : { + "value" : "c3c1a931-d658-4ac1-8516-5cae64c80583" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "70c6d91f-3ef1-4506-8147-a8097d64f138" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "70c6d91f-3ef1-4506-8147-a8097d64f138" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp", + "elementName" : "Particle", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ea1ae844-765b-4193-873b-47ef3bee5992" + }, + "attachedElementGuid" : { + "value" : "c3c1a931-d658-4ac1-8516-5cae64c80583" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ea1ae844-765b-4193-873b-47ef3bee5992" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ea1ae844-765b-4193-873b-47ef3bee5992" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "New Track", + "tags" : [ + + ], + "elementGuid" : { + "value" : "07c36659-ff78-4f02-a3fa-e605a82c6cf9" + }, + "attachedElementGuid" : { + "value" : "ea1ae844-765b-4193-873b-47ef3bee5992" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "07c36659-ff78-4f02-a3fa-e605a82c6cf9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "07c36659-ff78-4f02-a3fa-e605a82c6cf9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 0, + "trackSamplingType" : 1, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "07c36659-ff78-4f02-a3fa-e605a82c6cf9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleStatic_BM,Assembly-CSharp", + "trackTotalTime" : 1, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "07c36659-ff78-4f02-a3fa-e605a82c6cf9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ParticleTracker_BM,Assembly-CSharp", + "prewarm" : false, + "playTime" : 91.647, + "stopTime" : 105, + "is3D" : true, + "width" : 15, + "extendDirection" : { + "x" : 1, + "y" : 0.2, + "z" : 0 + }, + "density" : 15, + "lifeTime" : 14, + "isAutoOrient" : false, + "particleRotation" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "materialThemeBundleName" : "basic", + "materialName" : "Basic_Particle_Orb_0", + "elementName" : "New Particle Tracker", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a049a198-b2d7-4938-b00c-0b85981074d6" + }, + "attachedElementGuid" : { + "value" : "07c36659-ff78-4f02-a3fa-e605a82c6cf9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 0.2 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 3, + "attachedElementGuid" : { + "value" : "a049a198-b2d7-4938-b00c-0b85981074d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ParticleTracker_BM,Assembly-CSharp", + "prewarm" : false, + "playTime" : 91.647, + "stopTime" : 105, + "is3D" : true, + "width" : 15, + "extendDirection" : { + "x" : 1.3, + "y" : 0.4, + "z" : 0 + }, + "density" : 15, + "lifeTime" : 11, + "isAutoOrient" : false, + "particleRotation" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "materialThemeBundleName" : "basic", + "materialName" : "Basic_Particle_Orb_0", + "elementName" : "New Particle Tracker", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5d394d6a-378d-478a-80bb-ce8e20b92d50" + }, + "attachedElementGuid" : { + "value" : "07c36659-ff78-4f02-a3fa-e605a82c6cf9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0, + "g" : 1, + "b" : 1, + "a" : 0.2 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 0, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 3, + "attachedElementGuid" : { + "value" : "5d394d6a-378d-478a-80bb-ce8e20b92d50" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ParticleTracker_BM,Assembly-CSharp", + "prewarm" : false, + "playTime" : 91.647, + "stopTime" : 105, + "is3D" : true, + "width" : 15, + "extendDirection" : { + "x" : 1.1, + "y" : 0.1, + "z" : 0 + }, + "density" : 15, + "lifeTime" : 13, + "isAutoOrient" : false, + "particleRotation" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "materialThemeBundleName" : "basic", + "materialName" : "Basic_Particle_Orb_0", + "elementName" : "New Particle Tracker", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5d499532-6c63-40eb-ac89-59d573ddacdf" + }, + "attachedElementGuid" : { + "value" : "07c36659-ff78-4f02-a3fa-e605a82c6cf9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0.5, + "g" : 1, + "b" : 0.5, + "a" : 0.2 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 0.5, + "g" : 1, + "b" : 0.5, + "a" : 1 + }, + "originalEmissionIntensity" : 3, + "attachedElementGuid" : { + "value" : "5d499532-6c63-40eb-ac89-59d573ddacdf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ParticleTracker_BM,Assembly-CSharp", + "prewarm" : false, + "playTime" : 91.647, + "stopTime" : 105, + "is3D" : true, + "width" : 15, + "extendDirection" : { + "x" : 1.5, + "y" : 0.3, + "z" : 0 + }, + "density" : 15, + "lifeTime" : 8, + "isAutoOrient" : false, + "particleRotation" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "materialThemeBundleName" : "basic", + "materialName" : "Basic_Particle_Orb_0", + "elementName" : "New Particle Tracker", + "tags" : [ + + ], + "elementGuid" : { + "value" : "83007cee-81f9-4bcf-a917-8207dee6d5e8" + }, + "attachedElementGuid" : { + "value" : "07c36659-ff78-4f02-a3fa-e605a82c6cf9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 0.25, + "b" : 0.25, + "a" : 0.2 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 0.25, + "b" : 0.25, + "a" : 1 + }, + "originalEmissionIntensity" : 3, + "attachedElementGuid" : { + "value" : "83007cee-81f9-4bcf-a917-8207dee6d5e8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1e66639f-d3c1-4af6-b801-9bab2980f50c" + }, + "attachedElementGuid" : { + "value" : "07c36659-ff78-4f02-a3fa-e605a82c6cf9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : -5, + "z" : 1388 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "1e66639f-d3c1-4af6-b801-9bab2980f50c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1e66639f-d3c1-4af6-b801-9bab2980f50c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "1e66639f-d3c1-4af6-b801-9bab2980f50c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3c20602b-6739-49bd-b03d-68934231c72b" + }, + "attachedElementGuid" : { + "value" : "07c36659-ff78-4f02-a3fa-e605a82c6cf9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : -7.5, + "z" : 1452 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3c20602b-6739-49bd-b03d-68934231c72b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3c20602b-6739-49bd-b03d-68934231c72b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3c20602b-6739-49bd-b03d-68934231c72b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "32c29106-bf1f-40ca-9d23-8aceb1477a05" + }, + "attachedElementGuid" : { + "value" : "07c36659-ff78-4f02-a3fa-e605a82c6cf9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : -4, + "z" : 1516 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "32c29106-bf1f-40ca-9d23-8aceb1477a05" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "32c29106-bf1f-40ca-9d23-8aceb1477a05" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "32c29106-bf1f-40ca-9d23-8aceb1477a05" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a530fe76-6dc0-4a1b-a1a7-621ee1cd2ce2" + }, + "attachedElementGuid" : { + "value" : "07c36659-ff78-4f02-a3fa-e605a82c6cf9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : -8, + "z" : 1580 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a530fe76-6dc0-4a1b-a1a7-621ee1cd2ce2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a530fe76-6dc0-4a1b-a1a7-621ee1cd2ce2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a530fe76-6dc0-4a1b-a1a7-621ee1cd2ce2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f3c3a3c6-04c8-44a3-a511-05145e5b8421" + }, + "attachedElementGuid" : { + "value" : "07c36659-ff78-4f02-a3fa-e605a82c6cf9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 1644 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f3c3a3c6-04c8-44a3-a511-05145e5b8421" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f3c3a3c6-04c8-44a3-a511-05145e5b8421" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f3c3a3c6-04c8-44a3-a511-05145e5b8421" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "New Track", + "tags" : [ + + ], + "elementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + }, + "attachedElementGuid" : { + "value" : "70c6d91f-3ef1-4506-8147-a8097d64f138" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 1, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 91.647, + "trackEndTime" : 114.352, + "visibleTrackTimeLength" : 1, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "dbed302a-9e74-4ff3-9b56-59cbd06342ae" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 5, + "z" : 1388 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "dbed302a-9e74-4ff3-9b56-59cbd06342ae" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "dbed302a-9e74-4ff3-9b56-59cbd06342ae" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "dbed302a-9e74-4ff3-9b56-59cbd06342ae" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6c795f26-9094-4d3a-90d1-6e032735648d" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 5, + "z" : 1452 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6c795f26-9094-4d3a-90d1-6e032735648d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6c795f26-9094-4d3a-90d1-6e032735648d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6c795f26-9094-4d3a-90d1-6e032735648d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bd1d6897-5275-4ad1-8785-e06e5a15e967" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 5, + "z" : 1516 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "bd1d6897-5275-4ad1-8785-e06e5a15e967" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bd1d6897-5275-4ad1-8785-e06e5a15e967" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "bd1d6897-5275-4ad1-8785-e06e5a15e967" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a1856fc7-1ca8-4fa2-bb98-0ccbbf52122b" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 5, + "z" : 1580 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a1856fc7-1ca8-4fa2-bb98-0ccbbf52122b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a1856fc7-1ca8-4fa2-bb98-0ccbbf52122b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a1856fc7-1ca8-4fa2-bb98-0ccbbf52122b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9f175c33-68a2-4066-a0db-edc323903fe5" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 5, + "z" : 1644 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9f175c33-68a2-4066-a0db-edc323903fe5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9f175c33-68a2-4066-a0db-edc323903fe5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "9f175c33-68a2-4066-a0db-edc323903fe5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "91.647-114.352", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5532d1c0-a4f6-4716-9817-57828c930b1a" + }, + "attachedElementGuid" : { + "value" : "4ee7f15e-c6f6-40e5-b9e8-8e4887afe797" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5532d1c0-a4f6-4716-9817-57828c930b1a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5532d1c0-a4f6-4716-9817-57828c930b1a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 1, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "5532d1c0-a4f6-4716-9817-57828c930b1a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 91.647, + "trackEndTime" : 114.352, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "5532d1c0-a4f6-4716-9817-57828c930b1a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "344719bd-6910-4d38-8b4e-57bfa55389d2" + }, + "attachedElementGuid" : { + "value" : "5532d1c0-a4f6-4716-9817-57828c930b1a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 12, + "z" : 1368 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "344719bd-6910-4d38-8b4e-57bfa55389d2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "344719bd-6910-4d38-8b4e-57bfa55389d2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "344719bd-6910-4d38-8b4e-57bfa55389d2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "643dcca5-5a33-48f2-be91-34784d513fca" + }, + "attachedElementGuid" : { + "value" : "5532d1c0-a4f6-4716-9817-57828c930b1a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 12, + "z" : 1432 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "643dcca5-5a33-48f2-be91-34784d513fca" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "643dcca5-5a33-48f2-be91-34784d513fca" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "643dcca5-5a33-48f2-be91-34784d513fca" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "46529f26-d3ed-4563-aa27-563aabdd1e79" + }, + "attachedElementGuid" : { + "value" : "5532d1c0-a4f6-4716-9817-57828c930b1a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 12, + "z" : 1496 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "46529f26-d3ed-4563-aa27-563aabdd1e79" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "46529f26-d3ed-4563-aa27-563aabdd1e79" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "46529f26-d3ed-4563-aa27-563aabdd1e79" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5ebdb6c0-b96d-42f2-a6c8-1c44f94a0181" + }, + "attachedElementGuid" : { + "value" : "5532d1c0-a4f6-4716-9817-57828c930b1a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 12, + "z" : 1560 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5ebdb6c0-b96d-42f2-a6c8-1c44f94a0181" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5ebdb6c0-b96d-42f2-a6c8-1c44f94a0181" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5ebdb6c0-b96d-42f2-a6c8-1c44f94a0181" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "433c426e-ed49-4495-a8b1-441688b1fb19" + }, + "attachedElementGuid" : { + "value" : "5532d1c0-a4f6-4716-9817-57828c930b1a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 12, + "z" : 1624 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "433c426e-ed49-4495-a8b1-441688b1fb19" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "433c426e-ed49-4495-a8b1-441688b1fb19" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "433c426e-ed49-4495-a8b1-441688b1fb19" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "850ed574-94b2-444a-ba02-623908b4d4b2" + }, + "attachedElementGuid" : { + "value" : "07c36659-ff78-4f02-a3fa-e605a82c6cf9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : -4, + "z" : 1708 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "850ed574-94b2-444a-ba02-623908b4d4b2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "850ed574-94b2-444a-ba02-623908b4d4b2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "850ed574-94b2-444a-ba02-623908b4d4b2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f32f52cb-a939-49e8-b113-8db2b86de212" + }, + "attachedElementGuid" : { + "value" : "07c36659-ff78-4f02-a3fa-e605a82c6cf9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 1772 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f32f52cb-a939-49e8-b113-8db2b86de212" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f32f52cb-a939-49e8-b113-8db2b86de212" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f32f52cb-a939-49e8-b113-8db2b86de212" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "eec1ae41-724a-43c9-a3c8-a68f4dbac2ca" + }, + "attachedElementGuid" : { + "value" : "07c36659-ff78-4f02-a3fa-e605a82c6cf9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : -3, + "z" : 1836 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "eec1ae41-724a-43c9-a3c8-a68f4dbac2ca" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "eec1ae41-724a-43c9-a3c8-a68f4dbac2ca" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "eec1ae41-724a-43c9-a3c8-a68f4dbac2ca" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6889e791-d8f2-4caf-a281-a4032c9ed6bb" + }, + "attachedElementGuid" : { + "value" : "07c36659-ff78-4f02-a3fa-e605a82c6cf9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : -10, + "z" : 1900 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6889e791-d8f2-4caf-a281-a4032c9ed6bb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6889e791-d8f2-4caf-a281-a4032c9ed6bb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6889e791-d8f2-4caf-a281-a4032c9ed6bb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "73c3e338-159c-4642-84fa-90e99d827699" + }, + "attachedElementGuid" : { + "value" : "5532d1c0-a4f6-4716-9817-57828c930b1a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 12, + "z" : 1688 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "73c3e338-159c-4642-84fa-90e99d827699" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "73c3e338-159c-4642-84fa-90e99d827699" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "73c3e338-159c-4642-84fa-90e99d827699" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "885e7bab-a890-4846-9e06-780770ab0e32" + }, + "attachedElementGuid" : { + "value" : "5532d1c0-a4f6-4716-9817-57828c930b1a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 12, + "z" : 1752 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "885e7bab-a890-4846-9e06-780770ab0e32" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "885e7bab-a890-4846-9e06-780770ab0e32" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "885e7bab-a890-4846-9e06-780770ab0e32" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2af108d7-1e61-4b72-b287-c93f620106ee" + }, + "attachedElementGuid" : { + "value" : "5532d1c0-a4f6-4716-9817-57828c930b1a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 12, + "z" : 1816 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2af108d7-1e61-4b72-b287-c93f620106ee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2af108d7-1e61-4b72-b287-c93f620106ee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "2af108d7-1e61-4b72-b287-c93f620106ee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a03a50e5-cf53-4a94-aee8-ca2ecbccf8ca" + }, + "attachedElementGuid" : { + "value" : "5532d1c0-a4f6-4716-9817-57828c930b1a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 12, + "z" : 1880 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a03a50e5-cf53-4a94-aee8-ca2ecbccf8ca" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a03a50e5-cf53-4a94-aee8-ca2ecbccf8ca" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a03a50e5-cf53-4a94-aee8-ca2ecbccf8ca" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a6e59eff-6fd3-47af-8219-999be615f2d0" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a6e59eff-6fd3-47af-8219-999be615f2d0" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : false, + "time" : 80.47 + },{ + "value" : false, + "time" : 91.764 + } + ] + }, + "enableProcessTime" : 0, + "headSize" : 0, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f1193758-70b6-40ca-90b5-f283f968acb8" + }, + "attachedElementGuid" : { + "value" : "a6e59eff-6fd3-47af-8219-999be615f2d0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f1193758-70b6-40ca-90b5-f283f968acb8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f1193758-70b6-40ca-90b5-f283f968acb8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 0 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "f1193758-70b6-40ca-90b5-f283f968acb8" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 91.647 + },{ + "value" : false, + "time" : 114.352 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "dd27e43e-20cd-48f5-9378-beaf4a6eaccf" + }, + "attachedElementGuid" : { + "value" : "f1193758-70b6-40ca-90b5-f283f968acb8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -0.2, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "dd27e43e-20cd-48f5-9378-beaf4a6eaccf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "dd27e43e-20cd-48f5-9378-beaf4a6eaccf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 0.25, + "b" : 0.25, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "dd27e43e-20cd-48f5-9378-beaf4a6eaccf" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 91.647 + },{ + "value" : false, + "time" : 114.352 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1b949710-4cf6-4115-92d7-948e45060bf6" + }, + "attachedElementGuid" : { + "value" : "f1193758-70b6-40ca-90b5-f283f968acb8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0.2, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "1b949710-4cf6-4115-92d7-948e45060bf6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1b949710-4cf6-4115-92d7-948e45060bf6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 0.25, + "b" : 0.25, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "1b949710-4cf6-4115-92d7-948e45060bf6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Swirl_BM,Assembly-CSharp", + "eulerAngleX" : { + "animatedFloatList" : [ + + ] + }, + "eulerAngleY" : { + "animatedFloatList" : [ + + ] + }, + "eulerAngleZ" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 5400, + "startTime" : 91.647, + "endTime" : 103.058, + "animationCurveType" : 0 + },{ + "startValue" : 5400, + "endValue" : 0, + "startTime" : 103.058, + "endTime" : 114.352, + "animationCurveType" : 0 + } + ] + }, + "elementName" : "New Swirl", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4287add7-21f3-46e8-a74f-871b881c6b2e" + }, + "attachedElementGuid" : { + "value" : "f1193758-70b6-40ca-90b5-f283f968acb8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4287add7-21f3-46e8-a74f-871b881c6b2e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "afbe5c9f-25a2-4c0d-99d2-782d8b03e7c1" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "afbe5c9f-25a2-4c0d-99d2-782d8b03e7c1" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : false, + "time" : 80.47 + },{ + "value" : false, + "time" : 91.764 + } + ] + }, + "enableProcessTime" : 0, + "headSize" : 0, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a5b6dd97-da4f-42d5-b0dd-fccbb0478cb3" + }, + "attachedElementGuid" : { + "value" : "afbe5c9f-25a2-4c0d-99d2-782d8b03e7c1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a5b6dd97-da4f-42d5-b0dd-fccbb0478cb3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a5b6dd97-da4f-42d5-b0dd-fccbb0478cb3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 0 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "a5b6dd97-da4f-42d5-b0dd-fccbb0478cb3" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 91.647 + },{ + "value" : false, + "time" : 114.352 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8708d8af-d763-459e-b06d-ed086e40eeee" + }, + "attachedElementGuid" : { + "value" : "a5b6dd97-da4f-42d5-b0dd-fccbb0478cb3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -0.2, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8708d8af-d763-459e-b06d-ed086e40eeee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8708d8af-d763-459e-b06d-ed086e40eeee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "8708d8af-d763-459e-b06d-ed086e40eeee" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 91.647 + },{ + "value" : false, + "time" : 114.352 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "da503f7f-fdd9-47aa-bbc4-0ae42d9bde7b" + }, + "attachedElementGuid" : { + "value" : "a5b6dd97-da4f-42d5-b0dd-fccbb0478cb3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0.2, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "da503f7f-fdd9-47aa-bbc4-0ae42d9bde7b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "da503f7f-fdd9-47aa-bbc4-0ae42d9bde7b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "da503f7f-fdd9-47aa-bbc4-0ae42d9bde7b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Swirl_BM,Assembly-CSharp", + "eulerAngleX" : { + "animatedFloatList" : [ + + ] + }, + "eulerAngleY" : { + "animatedFloatList" : [ + + ] + }, + "eulerAngleZ" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : -5400, + "startTime" : 91.647, + "endTime" : 103.058, + "animationCurveType" : 0 + },{ + "startValue" : -5400, + "endValue" : 0, + "startTime" : 103.058, + "endTime" : 114.352, + "animationCurveType" : 0 + } + ] + }, + "elementName" : "New Swirl", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4ef81bf6-8091-4f2f-bafa-f36d9d1502bb" + }, + "attachedElementGuid" : { + "value" : "a5b6dd97-da4f-42d5-b0dd-fccbb0478cb3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4ef81bf6-8091-4f2f-bafa-f36d9d1502bb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "20676d77-09c2-4ac2-8629-e810b94a8c08" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "20676d77-09c2-4ac2-8629-e810b94a8c08" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : false, + "time" : 80.47 + },{ + "value" : false, + "time" : 91.764 + } + ] + }, + "enableProcessTime" : 0, + "headSize" : 0, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "92aef98b-ce5c-4ffc-a00a-b762f2902f25" + }, + "attachedElementGuid" : { + "value" : "20676d77-09c2-4ac2-8629-e810b94a8c08" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "92aef98b-ce5c-4ffc-a00a-b762f2902f25" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "92aef98b-ce5c-4ffc-a00a-b762f2902f25" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 0 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "92aef98b-ce5c-4ffc-a00a-b762f2902f25" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 91.647 + },{ + "value" : false, + "time" : 114.352 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8e02d64c-200d-4ea1-87e4-46441485b7a5" + }, + "attachedElementGuid" : { + "value" : "92aef98b-ce5c-4ffc-a00a-b762f2902f25" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -0.2, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8e02d64c-200d-4ea1-87e4-46441485b7a5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8e02d64c-200d-4ea1-87e4-46441485b7a5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0.5, + "g" : 1, + "b" : 0.5, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "8e02d64c-200d-4ea1-87e4-46441485b7a5" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 91.647 + },{ + "value" : false, + "time" : 114.352 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2332ba42-046a-4be4-a0d0-a1a9c25d6bf0" + }, + "attachedElementGuid" : { + "value" : "92aef98b-ce5c-4ffc-a00a-b762f2902f25" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0.2, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2332ba42-046a-4be4-a0d0-a1a9c25d6bf0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2332ba42-046a-4be4-a0d0-a1a9c25d6bf0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0.5, + "g" : 1, + "b" : 0.5, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "2332ba42-046a-4be4-a0d0-a1a9c25d6bf0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Swirl_BM,Assembly-CSharp", + "eulerAngleX" : { + "animatedFloatList" : [ + + ] + }, + "eulerAngleY" : { + "animatedFloatList" : [ + + ] + }, + "eulerAngleZ" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 5400, + "startTime" : 91.647, + "endTime" : 103.058, + "animationCurveType" : 0 + },{ + "startValue" : 5400, + "endValue" : 0, + "startTime" : 103.058, + "endTime" : 114.352, + "animationCurveType" : 0 + } + ] + }, + "elementName" : "New Swirl", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cccab8ac-451d-4843-b40f-4e4a2d3b797b" + }, + "attachedElementGuid" : { + "value" : "92aef98b-ce5c-4ffc-a00a-b762f2902f25" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "cccab8ac-451d-4843-b40f-4e4a2d3b797b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2696de46-3965-4a68-bd3d-fde4d4b0333e" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 2, + "z" : 1708 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2696de46-3965-4a68-bd3d-fde4d4b0333e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2696de46-3965-4a68-bd3d-fde4d4b0333e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "2696de46-3965-4a68-bd3d-fde4d4b0333e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "511eb2bd-a9a5-44c7-9388-445498120a1e" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 2, + "z" : 1772 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "511eb2bd-a9a5-44c7-9388-445498120a1e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "511eb2bd-a9a5-44c7-9388-445498120a1e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "511eb2bd-a9a5-44c7-9388-445498120a1e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5db1cd0b-737a-4b9a-8425-ca27d83ea99c" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 2, + "z" : 1836 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5db1cd0b-737a-4b9a-8425-ca27d83ea99c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5db1cd0b-737a-4b9a-8425-ca27d83ea99c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5db1cd0b-737a-4b9a-8425-ca27d83ea99c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f3650aee-192c-4ea2-b870-36d403a6cf82" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 2, + "z" : 1900 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f3650aee-192c-4ea2-b870-36d403a6cf82" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f3650aee-192c-4ea2-b870-36d403a6cf82" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f3650aee-192c-4ea2-b870-36d403a6cf82" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 91.76471, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "feded625-bdb2-4d4d-8d67-471f71d5e31f" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "feded625-bdb2-4d4d-8d67-471f71d5e31f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "feded625-bdb2-4d4d-8d67-471f71d5e31f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "feded625-bdb2-4d4d-8d67-471f71d5e31f" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "60d08a81-6fd2-4566-8057-f550bdb3057a" + }, + "attachedElementGuid" : { + "value" : "feded625-bdb2-4d4d-8d67-471f71d5e31f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "60d08a81-6fd2-4566-8057-f550bdb3057a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "60d08a81-6fd2-4566-8057-f550bdb3057a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "60d08a81-6fd2-4566-8057-f550bdb3057a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "60d08a81-6fd2-4566-8057-f550bdb3057a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 92.02941, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "03e1b547-c6cd-486b-8e64-d21bd6f07207" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "03e1b547-c6cd-486b-8e64-d21bd6f07207" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "03e1b547-c6cd-486b-8e64-d21bd6f07207" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "03e1b547-c6cd-486b-8e64-d21bd6f07207" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7f6616ff-a1f9-4249-a823-d806442446f1" + }, + "attachedElementGuid" : { + "value" : "03e1b547-c6cd-486b-8e64-d21bd6f07207" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7f6616ff-a1f9-4249-a823-d806442446f1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7f6616ff-a1f9-4249-a823-d806442446f1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "7f6616ff-a1f9-4249-a823-d806442446f1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "7f6616ff-a1f9-4249-a823-d806442446f1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 92.11765, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "732584f0-bae2-4b7b-a776-16a3bf41eab1" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "732584f0-bae2-4b7b-a776-16a3bf41eab1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "732584f0-bae2-4b7b-a776-16a3bf41eab1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "732584f0-bae2-4b7b-a776-16a3bf41eab1" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "53a72dbf-6587-49ac-b2a9-e23ee50178f1" + }, + "attachedElementGuid" : { + "value" : "732584f0-bae2-4b7b-a776-16a3bf41eab1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "53a72dbf-6587-49ac-b2a9-e23ee50178f1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "53a72dbf-6587-49ac-b2a9-e23ee50178f1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "53a72dbf-6587-49ac-b2a9-e23ee50178f1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "53a72dbf-6587-49ac-b2a9-e23ee50178f1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 92.29412, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ae56d24f-6e7a-4582-a154-7beef81230b2" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ae56d24f-6e7a-4582-a154-7beef81230b2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "ae56d24f-6e7a-4582-a154-7beef81230b2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "ae56d24f-6e7a-4582-a154-7beef81230b2" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8bc832f2-632f-4bda-8f58-b3c68f8ddc2c" + }, + "attachedElementGuid" : { + "value" : "ae56d24f-6e7a-4582-a154-7beef81230b2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8bc832f2-632f-4bda-8f58-b3c68f8ddc2c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8bc832f2-632f-4bda-8f58-b3c68f8ddc2c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8bc832f2-632f-4bda-8f58-b3c68f8ddc2c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "8bc832f2-632f-4bda-8f58-b3c68f8ddc2c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 92.3823547, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ed024255-114c-4d9d-9314-03cfdf377b4a" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ed024255-114c-4d9d-9314-03cfdf377b4a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "ed024255-114c-4d9d-9314-03cfdf377b4a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "ed024255-114c-4d9d-9314-03cfdf377b4a" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c13db720-d0ef-4025-b9ba-eea392533199" + }, + "attachedElementGuid" : { + "value" : "ed024255-114c-4d9d-9314-03cfdf377b4a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c13db720-d0ef-4025-b9ba-eea392533199" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c13db720-d0ef-4025-b9ba-eea392533199" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c13db720-d0ef-4025-b9ba-eea392533199" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "c13db720-d0ef-4025-b9ba-eea392533199" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 92.55882, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0e626ef8-0e5d-41ee-82a1-06a0d5799756" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0e626ef8-0e5d-41ee-82a1-06a0d5799756" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "0e626ef8-0e5d-41ee-82a1-06a0d5799756" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "0e626ef8-0e5d-41ee-82a1-06a0d5799756" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "489609b7-6762-4191-ba19-9545f1734597" + }, + "attachedElementGuid" : { + "value" : "0e626ef8-0e5d-41ee-82a1-06a0d5799756" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "489609b7-6762-4191-ba19-9545f1734597" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "489609b7-6762-4191-ba19-9545f1734597" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "489609b7-6762-4191-ba19-9545f1734597" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "489609b7-6762-4191-ba19-9545f1734597" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 92.6470642, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "49c8caf9-8f14-4f84-adb2-07a654a166a8" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "49c8caf9-8f14-4f84-adb2-07a654a166a8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "49c8caf9-8f14-4f84-adb2-07a654a166a8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "49c8caf9-8f14-4f84-adb2-07a654a166a8" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8fe15847-e0b1-47b8-bf49-84f7171d998d" + }, + "attachedElementGuid" : { + "value" : "49c8caf9-8f14-4f84-adb2-07a654a166a8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8fe15847-e0b1-47b8-bf49-84f7171d998d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8fe15847-e0b1-47b8-bf49-84f7171d998d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8fe15847-e0b1-47b8-bf49-84f7171d998d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "8fe15847-e0b1-47b8-bf49-84f7171d998d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 92.82353, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1f459dae-ad13-433c-a3e0-b354244a86ee" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1f459dae-ad13-433c-a3e0-b354244a86ee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "1f459dae-ad13-433c-a3e0-b354244a86ee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "1f459dae-ad13-433c-a3e0-b354244a86ee" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "793ae298-48b7-4dfd-8b87-c79c3db8a8a0" + }, + "attachedElementGuid" : { + "value" : "1f459dae-ad13-433c-a3e0-b354244a86ee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "793ae298-48b7-4dfd-8b87-c79c3db8a8a0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "793ae298-48b7-4dfd-8b87-c79c3db8a8a0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "793ae298-48b7-4dfd-8b87-c79c3db8a8a0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "793ae298-48b7-4dfd-8b87-c79c3db8a8a0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 93, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "59c720da-d99b-4c42-8a88-981278a370af" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "59c720da-d99b-4c42-8a88-981278a370af" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "59c720da-d99b-4c42-8a88-981278a370af" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "59c720da-d99b-4c42-8a88-981278a370af" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8ae39ad0-cc02-4965-b6ac-1fa4afa42883" + }, + "attachedElementGuid" : { + "value" : "59c720da-d99b-4c42-8a88-981278a370af" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8ae39ad0-cc02-4965-b6ac-1fa4afa42883" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8ae39ad0-cc02-4965-b6ac-1fa4afa42883" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8ae39ad0-cc02-4965-b6ac-1fa4afa42883" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "8ae39ad0-cc02-4965-b6ac-1fa4afa42883" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 93.1764755, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ddb8786f-fe6d-46ef-9d7d-df3d614878ce" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ddb8786f-fe6d-46ef-9d7d-df3d614878ce" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "ddb8786f-fe6d-46ef-9d7d-df3d614878ce" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "ddb8786f-fe6d-46ef-9d7d-df3d614878ce" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b3f9995c-c991-4d7e-a3fa-67ad05715da3" + }, + "attachedElementGuid" : { + "value" : "ddb8786f-fe6d-46ef-9d7d-df3d614878ce" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b3f9995c-c991-4d7e-a3fa-67ad05715da3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b3f9995c-c991-4d7e-a3fa-67ad05715da3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b3f9995c-c991-4d7e-a3fa-67ad05715da3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "b3f9995c-c991-4d7e-a3fa-67ad05715da3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 93.44118, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "867e738d-5d5d-4037-ad17-8d1d5a2c7bf6" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "867e738d-5d5d-4037-ad17-8d1d5a2c7bf6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "867e738d-5d5d-4037-ad17-8d1d5a2c7bf6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "867e738d-5d5d-4037-ad17-8d1d5a2c7bf6" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8d52bc35-7f4d-4b1a-b021-9381e51ba835" + }, + "attachedElementGuid" : { + "value" : "867e738d-5d5d-4037-ad17-8d1d5a2c7bf6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8d52bc35-7f4d-4b1a-b021-9381e51ba835" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8d52bc35-7f4d-4b1a-b021-9381e51ba835" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8d52bc35-7f4d-4b1a-b021-9381e51ba835" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "8d52bc35-7f4d-4b1a-b021-9381e51ba835" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 93.52941, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f3445555-05a2-4dcf-86de-883a8f740db1" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f3445555-05a2-4dcf-86de-883a8f740db1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "f3445555-05a2-4dcf-86de-883a8f740db1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "f3445555-05a2-4dcf-86de-883a8f740db1" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "148228bd-f117-4afb-acf3-73ad3d4a8f60" + }, + "attachedElementGuid" : { + "value" : "f3445555-05a2-4dcf-86de-883a8f740db1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "148228bd-f117-4afb-acf3-73ad3d4a8f60" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "148228bd-f117-4afb-acf3-73ad3d4a8f60" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "148228bd-f117-4afb-acf3-73ad3d4a8f60" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "148228bd-f117-4afb-acf3-73ad3d4a8f60" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 93.70589, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "db45c362-ded8-4b3f-8496-2f19424b5476" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "db45c362-ded8-4b3f-8496-2f19424b5476" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "db45c362-ded8-4b3f-8496-2f19424b5476" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "db45c362-ded8-4b3f-8496-2f19424b5476" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f5fe469b-99a8-4b57-b65a-3b28d62ef347" + }, + "attachedElementGuid" : { + "value" : "db45c362-ded8-4b3f-8496-2f19424b5476" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f5fe469b-99a8-4b57-b65a-3b28d62ef347" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f5fe469b-99a8-4b57-b65a-3b28d62ef347" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f5fe469b-99a8-4b57-b65a-3b28d62ef347" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "f5fe469b-99a8-4b57-b65a-3b28d62ef347" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 93.79412, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0bbe12a5-4fc9-4ce0-9777-5bc4d73b715f" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0bbe12a5-4fc9-4ce0-9777-5bc4d73b715f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "0bbe12a5-4fc9-4ce0-9777-5bc4d73b715f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "0bbe12a5-4fc9-4ce0-9777-5bc4d73b715f" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d245ae69-21ba-4518-a507-2fc2a0746904" + }, + "attachedElementGuid" : { + "value" : "0bbe12a5-4fc9-4ce0-9777-5bc4d73b715f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d245ae69-21ba-4518-a507-2fc2a0746904" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d245ae69-21ba-4518-a507-2fc2a0746904" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d245ae69-21ba-4518-a507-2fc2a0746904" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d245ae69-21ba-4518-a507-2fc2a0746904" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 93.97059, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "286153bf-2edc-487e-adbe-6bba6ab4deb8" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "286153bf-2edc-487e-adbe-6bba6ab4deb8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "286153bf-2edc-487e-adbe-6bba6ab4deb8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "286153bf-2edc-487e-adbe-6bba6ab4deb8" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c25f3295-8ca3-47a7-98f0-e10d89a4ba63" + }, + "attachedElementGuid" : { + "value" : "286153bf-2edc-487e-adbe-6bba6ab4deb8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c25f3295-8ca3-47a7-98f0-e10d89a4ba63" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c25f3295-8ca3-47a7-98f0-e10d89a4ba63" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c25f3295-8ca3-47a7-98f0-e10d89a4ba63" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "c25f3295-8ca3-47a7-98f0-e10d89a4ba63" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 94.05882, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b1c7fc6f-9962-4a07-9779-4d012a48195a" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b1c7fc6f-9962-4a07-9779-4d012a48195a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "b1c7fc6f-9962-4a07-9779-4d012a48195a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "b1c7fc6f-9962-4a07-9779-4d012a48195a" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b03e9e1d-7231-4db8-a3cc-41c4f542d5fc" + }, + "attachedElementGuid" : { + "value" : "b1c7fc6f-9962-4a07-9779-4d012a48195a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b03e9e1d-7231-4db8-a3cc-41c4f542d5fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b03e9e1d-7231-4db8-a3cc-41c4f542d5fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b03e9e1d-7231-4db8-a3cc-41c4f542d5fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "b03e9e1d-7231-4db8-a3cc-41c4f542d5fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 94.2353, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9977c6bd-b264-486e-ba8d-69830b668992" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9977c6bd-b264-486e-ba8d-69830b668992" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "9977c6bd-b264-486e-ba8d-69830b668992" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "9977c6bd-b264-486e-ba8d-69830b668992" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "19e0e135-5bb1-40d4-8c6e-a223a4f28184" + }, + "attachedElementGuid" : { + "value" : "9977c6bd-b264-486e-ba8d-69830b668992" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "19e0e135-5bb1-40d4-8c6e-a223a4f28184" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "19e0e135-5bb1-40d4-8c6e-a223a4f28184" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "19e0e135-5bb1-40d4-8c6e-a223a4f28184" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "19e0e135-5bb1-40d4-8c6e-a223a4f28184" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 94.4117661, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "20bde406-3c87-4953-a3cb-19274d9e8cab" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "20bde406-3c87-4953-a3cb-19274d9e8cab" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "20bde406-3c87-4953-a3cb-19274d9e8cab" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "20bde406-3c87-4953-a3cb-19274d9e8cab" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b8d53b1e-2e41-4d28-99c3-50ccc6b295be" + }, + "attachedElementGuid" : { + "value" : "20bde406-3c87-4953-a3cb-19274d9e8cab" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b8d53b1e-2e41-4d28-99c3-50ccc6b295be" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b8d53b1e-2e41-4d28-99c3-50ccc6b295be" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b8d53b1e-2e41-4d28-99c3-50ccc6b295be" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "b8d53b1e-2e41-4d28-99c3-50ccc6b295be" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 94.5882339, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "56b63e7d-52b5-41b2-80d4-f939a8e3e69a" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "56b63e7d-52b5-41b2-80d4-f939a8e3e69a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "56b63e7d-52b5-41b2-80d4-f939a8e3e69a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "56b63e7d-52b5-41b2-80d4-f939a8e3e69a" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f007502f-4fe0-4d6f-b7c4-065f8701d075" + }, + "attachedElementGuid" : { + "value" : "56b63e7d-52b5-41b2-80d4-f939a8e3e69a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f007502f-4fe0-4d6f-b7c4-065f8701d075" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f007502f-4fe0-4d6f-b7c4-065f8701d075" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f007502f-4fe0-4d6f-b7c4-065f8701d075" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "f007502f-4fe0-4d6f-b7c4-065f8701d075" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 94.85294, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3757fa2e-ae59-47cd-a94e-bb24b4f4d7ed" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3757fa2e-ae59-47cd-a94e-bb24b4f4d7ed" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "3757fa2e-ae59-47cd-a94e-bb24b4f4d7ed" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "3757fa2e-ae59-47cd-a94e-bb24b4f4d7ed" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "03deedfa-d021-4eb3-a543-691b9e734e4a" + }, + "attachedElementGuid" : { + "value" : "3757fa2e-ae59-47cd-a94e-bb24b4f4d7ed" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "03deedfa-d021-4eb3-a543-691b9e734e4a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "03deedfa-d021-4eb3-a543-691b9e734e4a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "03deedfa-d021-4eb3-a543-691b9e734e4a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "03deedfa-d021-4eb3-a543-691b9e734e4a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 94.94118, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "dbe2a1d8-ffcb-43de-bd4f-3213303e36d8" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "dbe2a1d8-ffcb-43de-bd4f-3213303e36d8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "dbe2a1d8-ffcb-43de-bd4f-3213303e36d8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "dbe2a1d8-ffcb-43de-bd4f-3213303e36d8" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cdb916f8-c8b9-4f6e-b0f6-40bde6665323" + }, + "attachedElementGuid" : { + "value" : "dbe2a1d8-ffcb-43de-bd4f-3213303e36d8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "cdb916f8-c8b9-4f6e-b0f6-40bde6665323" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "cdb916f8-c8b9-4f6e-b0f6-40bde6665323" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "cdb916f8-c8b9-4f6e-b0f6-40bde6665323" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "cdb916f8-c8b9-4f6e-b0f6-40bde6665323" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 95.11765, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0d31ad4c-3854-4a4f-a097-4c80fe79c743" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0d31ad4c-3854-4a4f-a097-4c80fe79c743" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "0d31ad4c-3854-4a4f-a097-4c80fe79c743" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "0d31ad4c-3854-4a4f-a097-4c80fe79c743" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c5efa8fb-c86b-4c7c-9b7b-52b176298fea" + }, + "attachedElementGuid" : { + "value" : "0d31ad4c-3854-4a4f-a097-4c80fe79c743" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c5efa8fb-c86b-4c7c-9b7b-52b176298fea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c5efa8fb-c86b-4c7c-9b7b-52b176298fea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c5efa8fb-c86b-4c7c-9b7b-52b176298fea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "c5efa8fb-c86b-4c7c-9b7b-52b176298fea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 95.20589, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7e7ffc43-46fb-4c21-a3a5-79f939c49631" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7e7ffc43-46fb-4c21-a3a5-79f939c49631" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "7e7ffc43-46fb-4c21-a3a5-79f939c49631" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "7e7ffc43-46fb-4c21-a3a5-79f939c49631" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6e32c204-6e2f-44d7-9d6e-286b751f2c03" + }, + "attachedElementGuid" : { + "value" : "7e7ffc43-46fb-4c21-a3a5-79f939c49631" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6e32c204-6e2f-44d7-9d6e-286b751f2c03" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6e32c204-6e2f-44d7-9d6e-286b751f2c03" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6e32c204-6e2f-44d7-9d6e-286b751f2c03" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "6e32c204-6e2f-44d7-9d6e-286b751f2c03" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 95.3823547, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a6548d62-d1e6-4673-8809-f11d3fa25413" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a6548d62-d1e6-4673-8809-f11d3fa25413" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "a6548d62-d1e6-4673-8809-f11d3fa25413" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "a6548d62-d1e6-4673-8809-f11d3fa25413" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6573b49f-835a-400c-a45f-7c453cdca2d3" + }, + "attachedElementGuid" : { + "value" : "a6548d62-d1e6-4673-8809-f11d3fa25413" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6573b49f-835a-400c-a45f-7c453cdca2d3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6573b49f-835a-400c-a45f-7c453cdca2d3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6573b49f-835a-400c-a45f-7c453cdca2d3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "6573b49f-835a-400c-a45f-7c453cdca2d3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 95.47059, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f4d3b1a0-3e84-4d99-a3c9-a01df85ecccc" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f4d3b1a0-3e84-4d99-a3c9-a01df85ecccc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "f4d3b1a0-3e84-4d99-a3c9-a01df85ecccc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "f4d3b1a0-3e84-4d99-a3c9-a01df85ecccc" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8579d35d-87f6-4056-81cc-d3bca41e288a" + }, + "attachedElementGuid" : { + "value" : "f4d3b1a0-3e84-4d99-a3c9-a01df85ecccc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8579d35d-87f6-4056-81cc-d3bca41e288a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8579d35d-87f6-4056-81cc-d3bca41e288a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8579d35d-87f6-4056-81cc-d3bca41e288a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "8579d35d-87f6-4056-81cc-d3bca41e288a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 95.6470642, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "42f3ced8-67ad-4bf0-b13e-740f77028fd3" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "42f3ced8-67ad-4bf0-b13e-740f77028fd3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "42f3ced8-67ad-4bf0-b13e-740f77028fd3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "42f3ced8-67ad-4bf0-b13e-740f77028fd3" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0fca8861-87a1-4f06-a4c2-0ffcaef75fbd" + }, + "attachedElementGuid" : { + "value" : "42f3ced8-67ad-4bf0-b13e-740f77028fd3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0fca8861-87a1-4f06-a4c2-0ffcaef75fbd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0fca8861-87a1-4f06-a4c2-0ffcaef75fbd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0fca8861-87a1-4f06-a4c2-0ffcaef75fbd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "0fca8861-87a1-4f06-a4c2-0ffcaef75fbd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 95.82353, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "02f5a907-37be-48da-9eac-be0b319a4c1a" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "02f5a907-37be-48da-9eac-be0b319a4c1a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "02f5a907-37be-48da-9eac-be0b319a4c1a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "02f5a907-37be-48da-9eac-be0b319a4c1a" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b80e4a4c-69c3-4f6f-a224-61b11514ba26" + }, + "attachedElementGuid" : { + "value" : "02f5a907-37be-48da-9eac-be0b319a4c1a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b80e4a4c-69c3-4f6f-a224-61b11514ba26" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b80e4a4c-69c3-4f6f-a224-61b11514ba26" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b80e4a4c-69c3-4f6f-a224-61b11514ba26" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "b80e4a4c-69c3-4f6f-a224-61b11514ba26" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 96, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8c10361c-e26e-4cbd-8c98-9c0115d54674" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8c10361c-e26e-4cbd-8c98-9c0115d54674" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "8c10361c-e26e-4cbd-8c98-9c0115d54674" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "8c10361c-e26e-4cbd-8c98-9c0115d54674" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5f6aa6dd-b9d4-404e-a4b8-05353880518b" + }, + "attachedElementGuid" : { + "value" : "8c10361c-e26e-4cbd-8c98-9c0115d54674" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5f6aa6dd-b9d4-404e-a4b8-05353880518b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5f6aa6dd-b9d4-404e-a4b8-05353880518b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5f6aa6dd-b9d4-404e-a4b8-05353880518b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "5f6aa6dd-b9d4-404e-a4b8-05353880518b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 96.26471, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "150790b0-9163-4b8e-8cd8-4ca643d2752b" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "150790b0-9163-4b8e-8cd8-4ca643d2752b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "150790b0-9163-4b8e-8cd8-4ca643d2752b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "150790b0-9163-4b8e-8cd8-4ca643d2752b" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "df03a99b-3057-4093-9069-b12675d9efe0" + }, + "attachedElementGuid" : { + "value" : "150790b0-9163-4b8e-8cd8-4ca643d2752b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "df03a99b-3057-4093-9069-b12675d9efe0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "df03a99b-3057-4093-9069-b12675d9efe0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "df03a99b-3057-4093-9069-b12675d9efe0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "df03a99b-3057-4093-9069-b12675d9efe0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 96.35294, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "251cdded-b3f9-473c-ae69-363486e705ea" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "251cdded-b3f9-473c-ae69-363486e705ea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "251cdded-b3f9-473c-ae69-363486e705ea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "251cdded-b3f9-473c-ae69-363486e705ea" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "69d4d3b0-6bdf-4588-8edd-55ba7b9159e5" + }, + "attachedElementGuid" : { + "value" : "251cdded-b3f9-473c-ae69-363486e705ea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "69d4d3b0-6bdf-4588-8edd-55ba7b9159e5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "69d4d3b0-6bdf-4588-8edd-55ba7b9159e5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "69d4d3b0-6bdf-4588-8edd-55ba7b9159e5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "69d4d3b0-6bdf-4588-8edd-55ba7b9159e5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 96.52941, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "030404b8-99a3-4185-8067-670f019aac36" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "030404b8-99a3-4185-8067-670f019aac36" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "030404b8-99a3-4185-8067-670f019aac36" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "030404b8-99a3-4185-8067-670f019aac36" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0fdb2358-5181-48df-bb21-4a285c2de54f" + }, + "attachedElementGuid" : { + "value" : "030404b8-99a3-4185-8067-670f019aac36" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0fdb2358-5181-48df-bb21-4a285c2de54f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0fdb2358-5181-48df-bb21-4a285c2de54f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0fdb2358-5181-48df-bb21-4a285c2de54f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "0fdb2358-5181-48df-bb21-4a285c2de54f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 96.61765, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "92a20720-2b4f-4934-9fb2-604ba3e67ea1" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "92a20720-2b4f-4934-9fb2-604ba3e67ea1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "92a20720-2b4f-4934-9fb2-604ba3e67ea1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "92a20720-2b4f-4934-9fb2-604ba3e67ea1" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d52b30ec-431c-41fe-b006-a4f2624f0264" + }, + "attachedElementGuid" : { + "value" : "92a20720-2b4f-4934-9fb2-604ba3e67ea1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d52b30ec-431c-41fe-b006-a4f2624f0264" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d52b30ec-431c-41fe-b006-a4f2624f0264" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d52b30ec-431c-41fe-b006-a4f2624f0264" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d52b30ec-431c-41fe-b006-a4f2624f0264" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 96.79412, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d8eeda01-6b12-4eab-8945-1e2ebcd5fbda" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d8eeda01-6b12-4eab-8945-1e2ebcd5fbda" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "d8eeda01-6b12-4eab-8945-1e2ebcd5fbda" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "d8eeda01-6b12-4eab-8945-1e2ebcd5fbda" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4a0a9e31-df3c-4028-9655-2f7515157ffb" + }, + "attachedElementGuid" : { + "value" : "d8eeda01-6b12-4eab-8945-1e2ebcd5fbda" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4a0a9e31-df3c-4028-9655-2f7515157ffb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4a0a9e31-df3c-4028-9655-2f7515157ffb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4a0a9e31-df3c-4028-9655-2f7515157ffb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "4a0a9e31-df3c-4028-9655-2f7515157ffb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 96.8823547, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "54477be9-ade0-452f-a4ad-4b3c5f6f38e9" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "54477be9-ade0-452f-a4ad-4b3c5f6f38e9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "54477be9-ade0-452f-a4ad-4b3c5f6f38e9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "54477be9-ade0-452f-a4ad-4b3c5f6f38e9" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2234d477-fcb0-4d7c-931b-ec2d3d78be0d" + }, + "attachedElementGuid" : { + "value" : "54477be9-ade0-452f-a4ad-4b3c5f6f38e9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2234d477-fcb0-4d7c-931b-ec2d3d78be0d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2234d477-fcb0-4d7c-931b-ec2d3d78be0d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "2234d477-fcb0-4d7c-931b-ec2d3d78be0d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "2234d477-fcb0-4d7c-931b-ec2d3d78be0d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 97.05882, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "46e6221c-a124-467d-87ce-8690812f4b52" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "46e6221c-a124-467d-87ce-8690812f4b52" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "46e6221c-a124-467d-87ce-8690812f4b52" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "46e6221c-a124-467d-87ce-8690812f4b52" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6ce96ce1-9061-4903-8a7f-c2eed3fd230d" + }, + "attachedElementGuid" : { + "value" : "46e6221c-a124-467d-87ce-8690812f4b52" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6ce96ce1-9061-4903-8a7f-c2eed3fd230d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6ce96ce1-9061-4903-8a7f-c2eed3fd230d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6ce96ce1-9061-4903-8a7f-c2eed3fd230d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "6ce96ce1-9061-4903-8a7f-c2eed3fd230d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 97.2353, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4d1de9ec-05c3-46e9-a50e-376b7b085fa4" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4d1de9ec-05c3-46e9-a50e-376b7b085fa4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "4d1de9ec-05c3-46e9-a50e-376b7b085fa4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "4d1de9ec-05c3-46e9-a50e-376b7b085fa4" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6dd78785-ce86-4e23-8d56-b91e3c05f2d3" + }, + "attachedElementGuid" : { + "value" : "4d1de9ec-05c3-46e9-a50e-376b7b085fa4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6dd78785-ce86-4e23-8d56-b91e3c05f2d3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6dd78785-ce86-4e23-8d56-b91e3c05f2d3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6dd78785-ce86-4e23-8d56-b91e3c05f2d3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "6dd78785-ce86-4e23-8d56-b91e3c05f2d3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 97.4117661, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "948842a3-9c68-47e3-8adc-34781a9b8e59" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "948842a3-9c68-47e3-8adc-34781a9b8e59" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "948842a3-9c68-47e3-8adc-34781a9b8e59" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "948842a3-9c68-47e3-8adc-34781a9b8e59" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d8ff08b7-c23f-408e-a33c-68a675769d70" + }, + "attachedElementGuid" : { + "value" : "948842a3-9c68-47e3-8adc-34781a9b8e59" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d8ff08b7-c23f-408e-a33c-68a675769d70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d8ff08b7-c23f-408e-a33c-68a675769d70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d8ff08b7-c23f-408e-a33c-68a675769d70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d8ff08b7-c23f-408e-a33c-68a675769d70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 97.6764755, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1f15f8c4-6f6e-436d-bf16-60fa538832db" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1f15f8c4-6f6e-436d-bf16-60fa538832db" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "1f15f8c4-6f6e-436d-bf16-60fa538832db" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "1f15f8c4-6f6e-436d-bf16-60fa538832db" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d2532a8a-65d8-4840-afc1-5c6b20f79591" + }, + "attachedElementGuid" : { + "value" : "1f15f8c4-6f6e-436d-bf16-60fa538832db" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d2532a8a-65d8-4840-afc1-5c6b20f79591" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d2532a8a-65d8-4840-afc1-5c6b20f79591" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d2532a8a-65d8-4840-afc1-5c6b20f79591" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d2532a8a-65d8-4840-afc1-5c6b20f79591" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 97.76471, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6d88d546-642c-4b5a-b20d-64789bcbe1ba" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6d88d546-642c-4b5a-b20d-64789bcbe1ba" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "6d88d546-642c-4b5a-b20d-64789bcbe1ba" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "6d88d546-642c-4b5a-b20d-64789bcbe1ba" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "275a70f3-a849-4d00-85aa-ec53a9ddc1bb" + }, + "attachedElementGuid" : { + "value" : "6d88d546-642c-4b5a-b20d-64789bcbe1ba" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "275a70f3-a849-4d00-85aa-ec53a9ddc1bb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "275a70f3-a849-4d00-85aa-ec53a9ddc1bb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "275a70f3-a849-4d00-85aa-ec53a9ddc1bb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "275a70f3-a849-4d00-85aa-ec53a9ddc1bb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 97.94118, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a377ce62-d185-44e0-81bf-535577cd75c7" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a377ce62-d185-44e0-81bf-535577cd75c7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "a377ce62-d185-44e0-81bf-535577cd75c7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "a377ce62-d185-44e0-81bf-535577cd75c7" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6065278b-7332-4453-8fcd-6ee48e67025e" + }, + "attachedElementGuid" : { + "value" : "a377ce62-d185-44e0-81bf-535577cd75c7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6065278b-7332-4453-8fcd-6ee48e67025e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6065278b-7332-4453-8fcd-6ee48e67025e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6065278b-7332-4453-8fcd-6ee48e67025e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "6065278b-7332-4453-8fcd-6ee48e67025e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 98.02941, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fe27cf8c-55ea-423b-b4cd-871cae8500e0" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fe27cf8c-55ea-423b-b4cd-871cae8500e0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "fe27cf8c-55ea-423b-b4cd-871cae8500e0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "fe27cf8c-55ea-423b-b4cd-871cae8500e0" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c7ef829a-f8c1-42cf-b347-40f7e62bf934" + }, + "attachedElementGuid" : { + "value" : "fe27cf8c-55ea-423b-b4cd-871cae8500e0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c7ef829a-f8c1-42cf-b347-40f7e62bf934" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c7ef829a-f8c1-42cf-b347-40f7e62bf934" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c7ef829a-f8c1-42cf-b347-40f7e62bf934" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "c7ef829a-f8c1-42cf-b347-40f7e62bf934" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 98.20589, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d89e198a-db13-4c41-9e19-861214654928" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d89e198a-db13-4c41-9e19-861214654928" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "d89e198a-db13-4c41-9e19-861214654928" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "d89e198a-db13-4c41-9e19-861214654928" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0366b5fe-6d62-4cee-bd1b-0f37ec37461e" + }, + "attachedElementGuid" : { + "value" : "d89e198a-db13-4c41-9e19-861214654928" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0366b5fe-6d62-4cee-bd1b-0f37ec37461e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0366b5fe-6d62-4cee-bd1b-0f37ec37461e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0366b5fe-6d62-4cee-bd1b-0f37ec37461e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "0366b5fe-6d62-4cee-bd1b-0f37ec37461e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 98.29412, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f6f8a10c-8d17-43da-891b-34caefd56d0d" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f6f8a10c-8d17-43da-891b-34caefd56d0d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "f6f8a10c-8d17-43da-891b-34caefd56d0d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "f6f8a10c-8d17-43da-891b-34caefd56d0d" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7a8ae914-7299-4e3f-b517-e19581b340f2" + }, + "attachedElementGuid" : { + "value" : "f6f8a10c-8d17-43da-891b-34caefd56d0d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7a8ae914-7299-4e3f-b517-e19581b340f2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7a8ae914-7299-4e3f-b517-e19581b340f2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "7a8ae914-7299-4e3f-b517-e19581b340f2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "7a8ae914-7299-4e3f-b517-e19581b340f2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 98.47059, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "81972cfb-2ae2-4966-81d9-641ea9098e8b" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "81972cfb-2ae2-4966-81d9-641ea9098e8b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "81972cfb-2ae2-4966-81d9-641ea9098e8b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "81972cfb-2ae2-4966-81d9-641ea9098e8b" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e1bc2b8f-a92f-4ec5-b8ca-fdb34e98e2e6" + }, + "attachedElementGuid" : { + "value" : "81972cfb-2ae2-4966-81d9-641ea9098e8b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e1bc2b8f-a92f-4ec5-b8ca-fdb34e98e2e6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e1bc2b8f-a92f-4ec5-b8ca-fdb34e98e2e6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e1bc2b8f-a92f-4ec5-b8ca-fdb34e98e2e6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "e1bc2b8f-a92f-4ec5-b8ca-fdb34e98e2e6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 98.6470642, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7e5f0519-b69c-45d3-805a-7a7351ab74ed" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7e5f0519-b69c-45d3-805a-7a7351ab74ed" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "7e5f0519-b69c-45d3-805a-7a7351ab74ed" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "7e5f0519-b69c-45d3-805a-7a7351ab74ed" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b26faca1-57dc-47e6-9024-039e443a70fa" + }, + "attachedElementGuid" : { + "value" : "7e5f0519-b69c-45d3-805a-7a7351ab74ed" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b26faca1-57dc-47e6-9024-039e443a70fa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b26faca1-57dc-47e6-9024-039e443a70fa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b26faca1-57dc-47e6-9024-039e443a70fa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "b26faca1-57dc-47e6-9024-039e443a70fa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 98.82353, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c12f67a6-6ea2-400b-98f7-ec90c80a6ee1" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c12f67a6-6ea2-400b-98f7-ec90c80a6ee1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "c12f67a6-6ea2-400b-98f7-ec90c80a6ee1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "c12f67a6-6ea2-400b-98f7-ec90c80a6ee1" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0b25c7d9-d223-415b-a3f3-90b44e29ded9" + }, + "attachedElementGuid" : { + "value" : "c12f67a6-6ea2-400b-98f7-ec90c80a6ee1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0b25c7d9-d223-415b-a3f3-90b44e29ded9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0b25c7d9-d223-415b-a3f3-90b44e29ded9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0b25c7d9-d223-415b-a3f3-90b44e29ded9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "0b25c7d9-d223-415b-a3f3-90b44e29ded9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 99.0882339, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0456f38e-3f31-4745-8980-76bb5c741fc4" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0456f38e-3f31-4745-8980-76bb5c741fc4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "0456f38e-3f31-4745-8980-76bb5c741fc4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "0456f38e-3f31-4745-8980-76bb5c741fc4" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a26a145d-9409-4de4-9af0-27bf5f7cac5e" + }, + "attachedElementGuid" : { + "value" : "0456f38e-3f31-4745-8980-76bb5c741fc4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a26a145d-9409-4de4-9af0-27bf5f7cac5e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a26a145d-9409-4de4-9af0-27bf5f7cac5e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a26a145d-9409-4de4-9af0-27bf5f7cac5e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "a26a145d-9409-4de4-9af0-27bf5f7cac5e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 99.1764755, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6df1c236-7941-489f-b7b8-ea312ef7e1b9" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6df1c236-7941-489f-b7b8-ea312ef7e1b9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "6df1c236-7941-489f-b7b8-ea312ef7e1b9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "6df1c236-7941-489f-b7b8-ea312ef7e1b9" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "eee58a92-76f2-4806-86b6-dcff49a077d6" + }, + "attachedElementGuid" : { + "value" : "6df1c236-7941-489f-b7b8-ea312ef7e1b9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "eee58a92-76f2-4806-86b6-dcff49a077d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "eee58a92-76f2-4806-86b6-dcff49a077d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "eee58a92-76f2-4806-86b6-dcff49a077d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "eee58a92-76f2-4806-86b6-dcff49a077d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 99.35294, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8bb7e604-95f4-4044-af08-d0d2fa0f442e" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8bb7e604-95f4-4044-af08-d0d2fa0f442e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "8bb7e604-95f4-4044-af08-d0d2fa0f442e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "8bb7e604-95f4-4044-af08-d0d2fa0f442e" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7a0efae7-55c5-4afb-a479-d50b6629a089" + }, + "attachedElementGuid" : { + "value" : "8bb7e604-95f4-4044-af08-d0d2fa0f442e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7a0efae7-55c5-4afb-a479-d50b6629a089" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7a0efae7-55c5-4afb-a479-d50b6629a089" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "7a0efae7-55c5-4afb-a479-d50b6629a089" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "7a0efae7-55c5-4afb-a479-d50b6629a089" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 99.44118, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cd49079a-0c28-4e9b-b645-ba3a23101c8a" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "cd49079a-0c28-4e9b-b645-ba3a23101c8a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "cd49079a-0c28-4e9b-b645-ba3a23101c8a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "cd49079a-0c28-4e9b-b645-ba3a23101c8a" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "426f924f-95b2-4d6a-a48e-6591fb780e53" + }, + "attachedElementGuid" : { + "value" : "cd49079a-0c28-4e9b-b645-ba3a23101c8a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "426f924f-95b2-4d6a-a48e-6591fb780e53" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "426f924f-95b2-4d6a-a48e-6591fb780e53" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "426f924f-95b2-4d6a-a48e-6591fb780e53" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "426f924f-95b2-4d6a-a48e-6591fb780e53" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 99.61765, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e9a68f88-528d-460a-af23-0b205c8cd8ea" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e9a68f88-528d-460a-af23-0b205c8cd8ea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "e9a68f88-528d-460a-af23-0b205c8cd8ea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "e9a68f88-528d-460a-af23-0b205c8cd8ea" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ba36a520-194e-4f6c-898d-14b520f3b98a" + }, + "attachedElementGuid" : { + "value" : "e9a68f88-528d-460a-af23-0b205c8cd8ea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ba36a520-194e-4f6c-898d-14b520f3b98a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ba36a520-194e-4f6c-898d-14b520f3b98a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ba36a520-194e-4f6c-898d-14b520f3b98a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "ba36a520-194e-4f6c-898d-14b520f3b98a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 99.70589, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bfc58218-45c1-470f-8329-f2dc3ab2263d" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bfc58218-45c1-470f-8329-f2dc3ab2263d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "bfc58218-45c1-470f-8329-f2dc3ab2263d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "bfc58218-45c1-470f-8329-f2dc3ab2263d" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1192659a-08b5-461a-8a62-937ad6f4058f" + }, + "attachedElementGuid" : { + "value" : "bfc58218-45c1-470f-8329-f2dc3ab2263d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "1192659a-08b5-461a-8a62-937ad6f4058f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1192659a-08b5-461a-8a62-937ad6f4058f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "1192659a-08b5-461a-8a62-937ad6f4058f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "1192659a-08b5-461a-8a62-937ad6f4058f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 99.8823547, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "46b30271-f18c-4e5b-9fac-e9085e0c8047" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "46b30271-f18c-4e5b-9fac-e9085e0c8047" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "46b30271-f18c-4e5b-9fac-e9085e0c8047" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "46b30271-f18c-4e5b-9fac-e9085e0c8047" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b4eb6cc5-e1f6-49b5-8175-da3a5de1c65d" + }, + "attachedElementGuid" : { + "value" : "46b30271-f18c-4e5b-9fac-e9085e0c8047" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b4eb6cc5-e1f6-49b5-8175-da3a5de1c65d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b4eb6cc5-e1f6-49b5-8175-da3a5de1c65d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b4eb6cc5-e1f6-49b5-8175-da3a5de1c65d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "b4eb6cc5-e1f6-49b5-8175-da3a5de1c65d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 100.058823, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b82c39bb-8e13-4876-b06a-a4d087445ee6" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b82c39bb-8e13-4876-b06a-a4d087445ee6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "b82c39bb-8e13-4876-b06a-a4d087445ee6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "b82c39bb-8e13-4876-b06a-a4d087445ee6" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "54af4ac6-727e-4a48-8483-ecfabd77adcc" + }, + "attachedElementGuid" : { + "value" : "b82c39bb-8e13-4876-b06a-a4d087445ee6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "54af4ac6-727e-4a48-8483-ecfabd77adcc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "54af4ac6-727e-4a48-8483-ecfabd77adcc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "54af4ac6-727e-4a48-8483-ecfabd77adcc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "54af4ac6-727e-4a48-8483-ecfabd77adcc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 100.2353, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1c565d0f-b2a8-44d0-8d71-582143ef9487" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1c565d0f-b2a8-44d0-8d71-582143ef9487" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "1c565d0f-b2a8-44d0-8d71-582143ef9487" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "1c565d0f-b2a8-44d0-8d71-582143ef9487" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0c70a8e6-7383-42f3-82c2-4a814c551893" + }, + "attachedElementGuid" : { + "value" : "1c565d0f-b2a8-44d0-8d71-582143ef9487" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0c70a8e6-7383-42f3-82c2-4a814c551893" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0c70a8e6-7383-42f3-82c2-4a814c551893" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0c70a8e6-7383-42f3-82c2-4a814c551893" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "0c70a8e6-7383-42f3-82c2-4a814c551893" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 100.5, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "408d7b69-207d-4583-94ad-630212e4594f" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "408d7b69-207d-4583-94ad-630212e4594f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "408d7b69-207d-4583-94ad-630212e4594f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "408d7b69-207d-4583-94ad-630212e4594f" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "deaec079-a43c-4aac-a6e9-98897fbc2b34" + }, + "attachedElementGuid" : { + "value" : "408d7b69-207d-4583-94ad-630212e4594f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "deaec079-a43c-4aac-a6e9-98897fbc2b34" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "deaec079-a43c-4aac-a6e9-98897fbc2b34" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "deaec079-a43c-4aac-a6e9-98897fbc2b34" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "deaec079-a43c-4aac-a6e9-98897fbc2b34" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 100.588242, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1e64a598-057e-42d9-a81d-e451d683a45d" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1e64a598-057e-42d9-a81d-e451d683a45d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "1e64a598-057e-42d9-a81d-e451d683a45d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "1e64a598-057e-42d9-a81d-e451d683a45d" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a39b62c1-498a-4d5f-b0f6-72cc7908a97b" + }, + "attachedElementGuid" : { + "value" : "1e64a598-057e-42d9-a81d-e451d683a45d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a39b62c1-498a-4d5f-b0f6-72cc7908a97b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a39b62c1-498a-4d5f-b0f6-72cc7908a97b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a39b62c1-498a-4d5f-b0f6-72cc7908a97b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "a39b62c1-498a-4d5f-b0f6-72cc7908a97b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 100.764709, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "970ff32d-676a-4eb7-817c-482d2bcc79af" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "970ff32d-676a-4eb7-817c-482d2bcc79af" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "970ff32d-676a-4eb7-817c-482d2bcc79af" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "970ff32d-676a-4eb7-817c-482d2bcc79af" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c1b450dd-e2fd-4fe2-bb98-dffe357d3b70" + }, + "attachedElementGuid" : { + "value" : "970ff32d-676a-4eb7-817c-482d2bcc79af" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -0.1, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c1b450dd-e2fd-4fe2-bb98-dffe357d3b70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c1b450dd-e2fd-4fe2-bb98-dffe357d3b70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c1b450dd-e2fd-4fe2-bb98-dffe357d3b70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "c1b450dd-e2fd-4fe2-bb98-dffe357d3b70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 100.852943, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0db04288-3603-4631-9ba0-c9ddbe6f8709" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0db04288-3603-4631-9ba0-c9ddbe6f8709" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "0db04288-3603-4631-9ba0-c9ddbe6f8709" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "0db04288-3603-4631-9ba0-c9ddbe6f8709" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "479eb7d7-590f-43cc-b11a-a1e7c509f6c9" + }, + "attachedElementGuid" : { + "value" : "0db04288-3603-4631-9ba0-c9ddbe6f8709" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "479eb7d7-590f-43cc-b11a-a1e7c509f6c9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "479eb7d7-590f-43cc-b11a-a1e7c509f6c9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "479eb7d7-590f-43cc-b11a-a1e7c509f6c9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "479eb7d7-590f-43cc-b11a-a1e7c509f6c9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 101.029411, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c4354adc-38ab-4b43-9ced-261a3daf6fa4" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c4354adc-38ab-4b43-9ced-261a3daf6fa4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "c4354adc-38ab-4b43-9ced-261a3daf6fa4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "c4354adc-38ab-4b43-9ced-261a3daf6fa4" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "667c618b-ef2c-4982-b6f0-f22d4847107b" + }, + "attachedElementGuid" : { + "value" : "c4354adc-38ab-4b43-9ced-261a3daf6fa4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "667c618b-ef2c-4982-b6f0-f22d4847107b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "667c618b-ef2c-4982-b6f0-f22d4847107b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "667c618b-ef2c-4982-b6f0-f22d4847107b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "667c618b-ef2c-4982-b6f0-f22d4847107b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 101.117653, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "db34266b-ea9c-4410-ac5d-8c118f64382b" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "db34266b-ea9c-4410-ac5d-8c118f64382b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "db34266b-ea9c-4410-ac5d-8c118f64382b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "db34266b-ea9c-4410-ac5d-8c118f64382b" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2b6825da-5723-4f07-b5f0-4bb5d9e63ec9" + }, + "attachedElementGuid" : { + "value" : "db34266b-ea9c-4410-ac5d-8c118f64382b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2b6825da-5723-4f07-b5f0-4bb5d9e63ec9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2b6825da-5723-4f07-b5f0-4bb5d9e63ec9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "2b6825da-5723-4f07-b5f0-4bb5d9e63ec9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "2b6825da-5723-4f07-b5f0-4bb5d9e63ec9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 101.294121, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5045a632-9876-4660-b806-67a8c6826473" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5045a632-9876-4660-b806-67a8c6826473" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "5045a632-9876-4660-b806-67a8c6826473" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "5045a632-9876-4660-b806-67a8c6826473" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ecbdc0a6-6334-407a-954b-27d5db2ae7ef" + }, + "attachedElementGuid" : { + "value" : "5045a632-9876-4660-b806-67a8c6826473" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ecbdc0a6-6334-407a-954b-27d5db2ae7ef" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ecbdc0a6-6334-407a-954b-27d5db2ae7ef" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ecbdc0a6-6334-407a-954b-27d5db2ae7ef" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "ecbdc0a6-6334-407a-954b-27d5db2ae7ef" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 101.470589, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a33339f7-1e17-467f-9acd-7259b40387e1" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a33339f7-1e17-467f-9acd-7259b40387e1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "a33339f7-1e17-467f-9acd-7259b40387e1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "a33339f7-1e17-467f-9acd-7259b40387e1" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8822c95a-40fd-425c-b4ec-d9c91e346ad9" + }, + "attachedElementGuid" : { + "value" : "a33339f7-1e17-467f-9acd-7259b40387e1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8822c95a-40fd-425c-b4ec-d9c91e346ad9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8822c95a-40fd-425c-b4ec-d9c91e346ad9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8822c95a-40fd-425c-b4ec-d9c91e346ad9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "8822c95a-40fd-425c-b4ec-d9c91e346ad9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 101.647064, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5224986f-a8e4-4e5f-9324-2f9fe11c56ca" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5224986f-a8e4-4e5f-9324-2f9fe11c56ca" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "5224986f-a8e4-4e5f-9324-2f9fe11c56ca" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "5224986f-a8e4-4e5f-9324-2f9fe11c56ca" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ff686ea0-720e-42b8-9e01-d482891c5025" + }, + "attachedElementGuid" : { + "value" : "5224986f-a8e4-4e5f-9324-2f9fe11c56ca" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ff686ea0-720e-42b8-9e01-d482891c5025" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ff686ea0-720e-42b8-9e01-d482891c5025" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ff686ea0-720e-42b8-9e01-d482891c5025" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "ff686ea0-720e-42b8-9e01-d482891c5025" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 101.911766, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "12f02bb2-e6b3-464a-bc7e-36d3b8ffaf49" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "12f02bb2-e6b3-464a-bc7e-36d3b8ffaf49" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "12f02bb2-e6b3-464a-bc7e-36d3b8ffaf49" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "12f02bb2-e6b3-464a-bc7e-36d3b8ffaf49" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b3e3217e-244b-4fa8-8e16-095ea32474fa" + }, + "attachedElementGuid" : { + "value" : "12f02bb2-e6b3-464a-bc7e-36d3b8ffaf49" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b3e3217e-244b-4fa8-8e16-095ea32474fa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b3e3217e-244b-4fa8-8e16-095ea32474fa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b3e3217e-244b-4fa8-8e16-095ea32474fa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "b3e3217e-244b-4fa8-8e16-095ea32474fa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 102, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fc3d2944-7e8c-446b-b4b7-ab06f438129b" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fc3d2944-7e8c-446b-b4b7-ab06f438129b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "fc3d2944-7e8c-446b-b4b7-ab06f438129b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "fc3d2944-7e8c-446b-b4b7-ab06f438129b" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0204c80e-d2b4-4b92-9e66-3d76899a3303" + }, + "attachedElementGuid" : { + "value" : "fc3d2944-7e8c-446b-b4b7-ab06f438129b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0204c80e-d2b4-4b92-9e66-3d76899a3303" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0204c80e-d2b4-4b92-9e66-3d76899a3303" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0204c80e-d2b4-4b92-9e66-3d76899a3303" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "0204c80e-d2b4-4b92-9e66-3d76899a3303" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 102.176476, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5c77b16c-6b3f-4b6c-bb7f-60f7b42344d2" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5c77b16c-6b3f-4b6c-bb7f-60f7b42344d2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "5c77b16c-6b3f-4b6c-bb7f-60f7b42344d2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "5c77b16c-6b3f-4b6c-bb7f-60f7b42344d2" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cfaa8cb6-8549-4b32-9a8b-2903308b2a53" + }, + "attachedElementGuid" : { + "value" : "5c77b16c-6b3f-4b6c-bb7f-60f7b42344d2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "cfaa8cb6-8549-4b32-9a8b-2903308b2a53" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "cfaa8cb6-8549-4b32-9a8b-2903308b2a53" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "cfaa8cb6-8549-4b32-9a8b-2903308b2a53" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "cfaa8cb6-8549-4b32-9a8b-2903308b2a53" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 102.264709, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f20c9d1d-6a67-4922-a39a-674d12ef37c3" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f20c9d1d-6a67-4922-a39a-674d12ef37c3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "f20c9d1d-6a67-4922-a39a-674d12ef37c3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "f20c9d1d-6a67-4922-a39a-674d12ef37c3" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "629e161d-6077-4456-999a-03cdf5cce66d" + }, + "attachedElementGuid" : { + "value" : "f20c9d1d-6a67-4922-a39a-674d12ef37c3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "629e161d-6077-4456-999a-03cdf5cce66d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "629e161d-6077-4456-999a-03cdf5cce66d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "629e161d-6077-4456-999a-03cdf5cce66d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "629e161d-6077-4456-999a-03cdf5cce66d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 102.441177, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5c485609-fc8b-457c-9f16-df03d546d151" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5c485609-fc8b-457c-9f16-df03d546d151" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "5c485609-fc8b-457c-9f16-df03d546d151" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "5c485609-fc8b-457c-9f16-df03d546d151" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0fd2b7d3-2c00-4273-9dd2-fc547ce170b1" + }, + "attachedElementGuid" : { + "value" : "5c485609-fc8b-457c-9f16-df03d546d151" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0fd2b7d3-2c00-4273-9dd2-fc547ce170b1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0fd2b7d3-2c00-4273-9dd2-fc547ce170b1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0fd2b7d3-2c00-4273-9dd2-fc547ce170b1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "0fd2b7d3-2c00-4273-9dd2-fc547ce170b1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 102.529411, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "deb7c688-769f-4696-a14b-631d88c24995" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "deb7c688-769f-4696-a14b-631d88c24995" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "deb7c688-769f-4696-a14b-631d88c24995" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "deb7c688-769f-4696-a14b-631d88c24995" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6d050837-e06a-410b-81c9-0a1d678caacb" + }, + "attachedElementGuid" : { + "value" : "deb7c688-769f-4696-a14b-631d88c24995" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6d050837-e06a-410b-81c9-0a1d678caacb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6d050837-e06a-410b-81c9-0a1d678caacb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6d050837-e06a-410b-81c9-0a1d678caacb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "6d050837-e06a-410b-81c9-0a1d678caacb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 102.705887, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cd2adeb3-dc38-4f2e-9dd6-d30db411d122" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "cd2adeb3-dc38-4f2e-9dd6-d30db411d122" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "cd2adeb3-dc38-4f2e-9dd6-d30db411d122" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "cd2adeb3-dc38-4f2e-9dd6-d30db411d122" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7b270575-effb-4378-95e3-f73e2fd831af" + }, + "attachedElementGuid" : { + "value" : "cd2adeb3-dc38-4f2e-9dd6-d30db411d122" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7b270575-effb-4378-95e3-f73e2fd831af" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7b270575-effb-4378-95e3-f73e2fd831af" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "7b270575-effb-4378-95e3-f73e2fd831af" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "7b270575-effb-4378-95e3-f73e2fd831af" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 102.882355, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "42b501fc-6623-4464-a7b6-03f7336116ce" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "42b501fc-6623-4464-a7b6-03f7336116ce" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "42b501fc-6623-4464-a7b6-03f7336116ce" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "42b501fc-6623-4464-a7b6-03f7336116ce" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f0ed1beb-f526-426f-8ea1-53229344b50c" + }, + "attachedElementGuid" : { + "value" : "42b501fc-6623-4464-a7b6-03f7336116ce" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f0ed1beb-f526-426f-8ea1-53229344b50c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f0ed1beb-f526-426f-8ea1-53229344b50c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f0ed1beb-f526-426f-8ea1-53229344b50c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "f0ed1beb-f526-426f-8ea1-53229344b50c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 103.058823, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8432a051-18c2-4dbf-84c9-84ae0674afb6" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8432a051-18c2-4dbf-84c9-84ae0674afb6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "8432a051-18c2-4dbf-84c9-84ae0674afb6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "8432a051-18c2-4dbf-84c9-84ae0674afb6" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cb19ba36-161a-4d09-840a-402e58a31f3a" + }, + "attachedElementGuid" : { + "value" : "8432a051-18c2-4dbf-84c9-84ae0674afb6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "cb19ba36-161a-4d09-840a-402e58a31f3a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "cb19ba36-161a-4d09-840a-402e58a31f3a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "cb19ba36-161a-4d09-840a-402e58a31f3a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "cb19ba36-161a-4d09-840a-402e58a31f3a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 103.323532, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ec9d7ac3-9a09-4079-b9d3-f7b089dbb07d" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ec9d7ac3-9a09-4079-b9d3-f7b089dbb07d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "ec9d7ac3-9a09-4079-b9d3-f7b089dbb07d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "ec9d7ac3-9a09-4079-b9d3-f7b089dbb07d" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0927a3c9-4eb2-4c72-87b3-fd72dc61d04a" + }, + "attachedElementGuid" : { + "value" : "ec9d7ac3-9a09-4079-b9d3-f7b089dbb07d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0927a3c9-4eb2-4c72-87b3-fd72dc61d04a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0927a3c9-4eb2-4c72-87b3-fd72dc61d04a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0927a3c9-4eb2-4c72-87b3-fd72dc61d04a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "0927a3c9-4eb2-4c72-87b3-fd72dc61d04a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 103.411766, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "981e69c8-bfb7-407e-9945-d40e087a572a" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "981e69c8-bfb7-407e-9945-d40e087a572a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "981e69c8-bfb7-407e-9945-d40e087a572a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "981e69c8-bfb7-407e-9945-d40e087a572a" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "af45312d-a641-438a-8af5-375b5c6c54ef" + }, + "attachedElementGuid" : { + "value" : "981e69c8-bfb7-407e-9945-d40e087a572a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "af45312d-a641-438a-8af5-375b5c6c54ef" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "af45312d-a641-438a-8af5-375b5c6c54ef" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "af45312d-a641-438a-8af5-375b5c6c54ef" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "af45312d-a641-438a-8af5-375b5c6c54ef" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 103.588242, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c287f998-eaff-413b-b7e4-50cb9bf8120d" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c287f998-eaff-413b-b7e4-50cb9bf8120d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "c287f998-eaff-413b-b7e4-50cb9bf8120d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "c287f998-eaff-413b-b7e4-50cb9bf8120d" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "521fd3ed-e49c-49dd-95f1-91aa834feb0d" + }, + "attachedElementGuid" : { + "value" : "c287f998-eaff-413b-b7e4-50cb9bf8120d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "521fd3ed-e49c-49dd-95f1-91aa834feb0d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "521fd3ed-e49c-49dd-95f1-91aa834feb0d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "521fd3ed-e49c-49dd-95f1-91aa834feb0d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "521fd3ed-e49c-49dd-95f1-91aa834feb0d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 103.676476, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "92f76625-07a2-4aaa-928e-cec46287e047" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "92f76625-07a2-4aaa-928e-cec46287e047" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "92f76625-07a2-4aaa-928e-cec46287e047" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "92f76625-07a2-4aaa-928e-cec46287e047" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f83127cd-4132-453e-affe-d3c6e9df53b1" + }, + "attachedElementGuid" : { + "value" : "92f76625-07a2-4aaa-928e-cec46287e047" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f83127cd-4132-453e-affe-d3c6e9df53b1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f83127cd-4132-453e-affe-d3c6e9df53b1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f83127cd-4132-453e-affe-d3c6e9df53b1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "f83127cd-4132-453e-affe-d3c6e9df53b1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 103.852943, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "dc35636b-eb9f-4b70-b8c4-cc6605450b99" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "dc35636b-eb9f-4b70-b8c4-cc6605450b99" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "dc35636b-eb9f-4b70-b8c4-cc6605450b99" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "dc35636b-eb9f-4b70-b8c4-cc6605450b99" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3e90164c-7e87-4ac1-86a9-182e55c7bdf1" + }, + "attachedElementGuid" : { + "value" : "dc35636b-eb9f-4b70-b8c4-cc6605450b99" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3e90164c-7e87-4ac1-86a9-182e55c7bdf1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3e90164c-7e87-4ac1-86a9-182e55c7bdf1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3e90164c-7e87-4ac1-86a9-182e55c7bdf1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "3e90164c-7e87-4ac1-86a9-182e55c7bdf1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 103.941177, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5fd687f4-e614-408d-beeb-30c69d278eaa" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5fd687f4-e614-408d-beeb-30c69d278eaa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "5fd687f4-e614-408d-beeb-30c69d278eaa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "5fd687f4-e614-408d-beeb-30c69d278eaa" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e914f2f7-0395-4c79-880c-52431134fa5b" + }, + "attachedElementGuid" : { + "value" : "5fd687f4-e614-408d-beeb-30c69d278eaa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e914f2f7-0395-4c79-880c-52431134fa5b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e914f2f7-0395-4c79-880c-52431134fa5b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e914f2f7-0395-4c79-880c-52431134fa5b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "e914f2f7-0395-4c79-880c-52431134fa5b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 104.117653, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d6bea2e7-eb80-4570-bdd0-f75842bf5ac5" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d6bea2e7-eb80-4570-bdd0-f75842bf5ac5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "d6bea2e7-eb80-4570-bdd0-f75842bf5ac5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "d6bea2e7-eb80-4570-bdd0-f75842bf5ac5" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "da256ef8-4dfa-499b-895a-cee4cd2b528b" + }, + "attachedElementGuid" : { + "value" : "d6bea2e7-eb80-4570-bdd0-f75842bf5ac5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "da256ef8-4dfa-499b-895a-cee4cd2b528b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "da256ef8-4dfa-499b-895a-cee4cd2b528b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "da256ef8-4dfa-499b-895a-cee4cd2b528b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "da256ef8-4dfa-499b-895a-cee4cd2b528b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 104.294121, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b89f3c48-9b83-4ca9-9529-37f5600b6b4f" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b89f3c48-9b83-4ca9-9529-37f5600b6b4f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "b89f3c48-9b83-4ca9-9529-37f5600b6b4f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "b89f3c48-9b83-4ca9-9529-37f5600b6b4f" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e970d246-27cf-4261-8401-c36f0caca26a" + }, + "attachedElementGuid" : { + "value" : "b89f3c48-9b83-4ca9-9529-37f5600b6b4f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e970d246-27cf-4261-8401-c36f0caca26a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e970d246-27cf-4261-8401-c36f0caca26a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e970d246-27cf-4261-8401-c36f0caca26a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "e970d246-27cf-4261-8401-c36f0caca26a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 104.470589, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "22fe5b54-7715-4a93-9b8e-cddaecb60857" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "22fe5b54-7715-4a93-9b8e-cddaecb60857" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "22fe5b54-7715-4a93-9b8e-cddaecb60857" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "22fe5b54-7715-4a93-9b8e-cddaecb60857" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "062f58e5-79bf-4c42-b75f-35f3f6ce62df" + }, + "attachedElementGuid" : { + "value" : "22fe5b54-7715-4a93-9b8e-cddaecb60857" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "062f58e5-79bf-4c42-b75f-35f3f6ce62df" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "062f58e5-79bf-4c42-b75f-35f3f6ce62df" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "062f58e5-79bf-4c42-b75f-35f3f6ce62df" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "062f58e5-79bf-4c42-b75f-35f3f6ce62df" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 104.7353, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b66bd52a-2837-46e1-8753-909e68c602f7" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b66bd52a-2837-46e1-8753-909e68c602f7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "b66bd52a-2837-46e1-8753-909e68c602f7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "b66bd52a-2837-46e1-8753-909e68c602f7" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3e35a106-e4ff-4c82-bb53-59b09d1053d7" + }, + "attachedElementGuid" : { + "value" : "b66bd52a-2837-46e1-8753-909e68c602f7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3e35a106-e4ff-4c82-bb53-59b09d1053d7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3e35a106-e4ff-4c82-bb53-59b09d1053d7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3e35a106-e4ff-4c82-bb53-59b09d1053d7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "3e35a106-e4ff-4c82-bb53-59b09d1053d7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 104.823532, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bbb3a76d-f85a-4622-943f-e9984703761a" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bbb3a76d-f85a-4622-943f-e9984703761a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "bbb3a76d-f85a-4622-943f-e9984703761a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "bbb3a76d-f85a-4622-943f-e9984703761a" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d8b39994-d1ee-4eb8-b181-195bf7a49a6b" + }, + "attachedElementGuid" : { + "value" : "bbb3a76d-f85a-4622-943f-e9984703761a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d8b39994-d1ee-4eb8-b181-195bf7a49a6b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d8b39994-d1ee-4eb8-b181-195bf7a49a6b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d8b39994-d1ee-4eb8-b181-195bf7a49a6b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d8b39994-d1ee-4eb8-b181-195bf7a49a6b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 105, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5ced05e0-10f7-4130-854b-c95a28756f5c" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5ced05e0-10f7-4130-854b-c95a28756f5c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "5ced05e0-10f7-4130-854b-c95a28756f5c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "5ced05e0-10f7-4130-854b-c95a28756f5c" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b6edd18c-ef33-4317-b4a5-8c967505e2d5" + }, + "attachedElementGuid" : { + "value" : "5ced05e0-10f7-4130-854b-c95a28756f5c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b6edd18c-ef33-4317-b4a5-8c967505e2d5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b6edd18c-ef33-4317-b4a5-8c967505e2d5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b6edd18c-ef33-4317-b4a5-8c967505e2d5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "b6edd18c-ef33-4317-b4a5-8c967505e2d5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 105.088242, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1f8e2231-0de2-4355-90f1-ac301c982279" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1f8e2231-0de2-4355-90f1-ac301c982279" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "1f8e2231-0de2-4355-90f1-ac301c982279" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "1f8e2231-0de2-4355-90f1-ac301c982279" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b22dc5ac-3cf4-4d35-b1bb-cea726510a1f" + }, + "attachedElementGuid" : { + "value" : "1f8e2231-0de2-4355-90f1-ac301c982279" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b22dc5ac-3cf4-4d35-b1bb-cea726510a1f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b22dc5ac-3cf4-4d35-b1bb-cea726510a1f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b22dc5ac-3cf4-4d35-b1bb-cea726510a1f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "b22dc5ac-3cf4-4d35-b1bb-cea726510a1f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 105.264709, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c07ebd77-2fa2-4b4b-a87b-38fcf63af5b0" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c07ebd77-2fa2-4b4b-a87b-38fcf63af5b0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "c07ebd77-2fa2-4b4b-a87b-38fcf63af5b0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "c07ebd77-2fa2-4b4b-a87b-38fcf63af5b0" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d016e0a2-120a-4883-a862-12de71718d66" + }, + "attachedElementGuid" : { + "value" : "c07ebd77-2fa2-4b4b-a87b-38fcf63af5b0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d016e0a2-120a-4883-a862-12de71718d66" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d016e0a2-120a-4883-a862-12de71718d66" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d016e0a2-120a-4883-a862-12de71718d66" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d016e0a2-120a-4883-a862-12de71718d66" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 105.352943, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cf641717-a600-4f65-b16c-857110becf30" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "cf641717-a600-4f65-b16c-857110becf30" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "cf641717-a600-4f65-b16c-857110becf30" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "cf641717-a600-4f65-b16c-857110becf30" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5d9607f7-eacd-44b6-bb28-3b7a6413a8be" + }, + "attachedElementGuid" : { + "value" : "cf641717-a600-4f65-b16c-857110becf30" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5d9607f7-eacd-44b6-bb28-3b7a6413a8be" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5d9607f7-eacd-44b6-bb28-3b7a6413a8be" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5d9607f7-eacd-44b6-bb28-3b7a6413a8be" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "5d9607f7-eacd-44b6-bb28-3b7a6413a8be" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 105.529411, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "79f920cd-38e1-4d0a-aba2-33255ae72635" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "79f920cd-38e1-4d0a-aba2-33255ae72635" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "79f920cd-38e1-4d0a-aba2-33255ae72635" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "79f920cd-38e1-4d0a-aba2-33255ae72635" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "157da529-a108-46b5-b860-e3c0904d17e8" + }, + "attachedElementGuid" : { + "value" : "79f920cd-38e1-4d0a-aba2-33255ae72635" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "157da529-a108-46b5-b860-e3c0904d17e8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "157da529-a108-46b5-b860-e3c0904d17e8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "157da529-a108-46b5-b860-e3c0904d17e8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "157da529-a108-46b5-b860-e3c0904d17e8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 105.705887, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c383b970-a4e0-4d3c-8e38-6669eb44e9e3" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c383b970-a4e0-4d3c-8e38-6669eb44e9e3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "c383b970-a4e0-4d3c-8e38-6669eb44e9e3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "c383b970-a4e0-4d3c-8e38-6669eb44e9e3" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8c851ee1-ee71-4efb-91a4-2a51d4cd4d43" + }, + "attachedElementGuid" : { + "value" : "c383b970-a4e0-4d3c-8e38-6669eb44e9e3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8c851ee1-ee71-4efb-91a4-2a51d4cd4d43" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8c851ee1-ee71-4efb-91a4-2a51d4cd4d43" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8c851ee1-ee71-4efb-91a4-2a51d4cd4d43" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "8c851ee1-ee71-4efb-91a4-2a51d4cd4d43" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 105.882355, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cd604fac-e245-4222-a829-48b97df31fcd" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "cd604fac-e245-4222-a829-48b97df31fcd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "cd604fac-e245-4222-a829-48b97df31fcd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "cd604fac-e245-4222-a829-48b97df31fcd" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "15098831-dd15-418d-ba4e-b30e66f63c79" + }, + "attachedElementGuid" : { + "value" : "cd604fac-e245-4222-a829-48b97df31fcd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "15098831-dd15-418d-ba4e-b30e66f63c79" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "15098831-dd15-418d-ba4e-b30e66f63c79" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "15098831-dd15-418d-ba4e-b30e66f63c79" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "15098831-dd15-418d-ba4e-b30e66f63c79" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 106.147064, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "29735fc4-4eb4-4d5a-83f9-77ab27eb5fcc" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "29735fc4-4eb4-4d5a-83f9-77ab27eb5fcc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "29735fc4-4eb4-4d5a-83f9-77ab27eb5fcc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "29735fc4-4eb4-4d5a-83f9-77ab27eb5fcc" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "181329c5-d636-451f-817f-2b5c78d57981" + }, + "attachedElementGuid" : { + "value" : "29735fc4-4eb4-4d5a-83f9-77ab27eb5fcc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "181329c5-d636-451f-817f-2b5c78d57981" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "181329c5-d636-451f-817f-2b5c78d57981" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "181329c5-d636-451f-817f-2b5c78d57981" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "181329c5-d636-451f-817f-2b5c78d57981" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 106.2353, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9596a26f-5c4f-45fc-90d5-992f5d391603" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9596a26f-5c4f-45fc-90d5-992f5d391603" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "9596a26f-5c4f-45fc-90d5-992f5d391603" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "9596a26f-5c4f-45fc-90d5-992f5d391603" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2310d3ea-0976-476f-998e-b178a085e56b" + }, + "attachedElementGuid" : { + "value" : "9596a26f-5c4f-45fc-90d5-992f5d391603" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2310d3ea-0976-476f-998e-b178a085e56b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2310d3ea-0976-476f-998e-b178a085e56b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "2310d3ea-0976-476f-998e-b178a085e56b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "2310d3ea-0976-476f-998e-b178a085e56b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 106.411766, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c7525682-9c52-469e-b14f-e860044d57af" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c7525682-9c52-469e-b14f-e860044d57af" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "c7525682-9c52-469e-b14f-e860044d57af" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "c7525682-9c52-469e-b14f-e860044d57af" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6fda1525-3df5-45ad-abb0-249a2065f9ca" + }, + "attachedElementGuid" : { + "value" : "c7525682-9c52-469e-b14f-e860044d57af" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6fda1525-3df5-45ad-abb0-249a2065f9ca" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6fda1525-3df5-45ad-abb0-249a2065f9ca" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6fda1525-3df5-45ad-abb0-249a2065f9ca" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "6fda1525-3df5-45ad-abb0-249a2065f9ca" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 106.5, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a41bfc6e-c2af-4278-ba6b-64a73780f2fb" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a41bfc6e-c2af-4278-ba6b-64a73780f2fb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "a41bfc6e-c2af-4278-ba6b-64a73780f2fb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "a41bfc6e-c2af-4278-ba6b-64a73780f2fb" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "928766e4-2666-4445-b362-1f148241abb3" + }, + "attachedElementGuid" : { + "value" : "a41bfc6e-c2af-4278-ba6b-64a73780f2fb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "928766e4-2666-4445-b362-1f148241abb3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "928766e4-2666-4445-b362-1f148241abb3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "928766e4-2666-4445-b362-1f148241abb3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "928766e4-2666-4445-b362-1f148241abb3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 106.676476, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f35348f7-30bb-4b8b-88c5-af5b27eab798" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f35348f7-30bb-4b8b-88c5-af5b27eab798" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "f35348f7-30bb-4b8b-88c5-af5b27eab798" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "f35348f7-30bb-4b8b-88c5-af5b27eab798" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "48595752-f5b4-46e2-9bbe-9098ba3fc8ea" + }, + "attachedElementGuid" : { + "value" : "f35348f7-30bb-4b8b-88c5-af5b27eab798" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "48595752-f5b4-46e2-9bbe-9098ba3fc8ea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "48595752-f5b4-46e2-9bbe-9098ba3fc8ea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "48595752-f5b4-46e2-9bbe-9098ba3fc8ea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "48595752-f5b4-46e2-9bbe-9098ba3fc8ea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 106.764709, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "89fcdc43-7d52-48a0-bceb-55568c83d942" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "89fcdc43-7d52-48a0-bceb-55568c83d942" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "89fcdc43-7d52-48a0-bceb-55568c83d942" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "89fcdc43-7d52-48a0-bceb-55568c83d942" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e52e9d15-6656-4699-a275-5ef91998c106" + }, + "attachedElementGuid" : { + "value" : "89fcdc43-7d52-48a0-bceb-55568c83d942" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e52e9d15-6656-4699-a275-5ef91998c106" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e52e9d15-6656-4699-a275-5ef91998c106" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e52e9d15-6656-4699-a275-5ef91998c106" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "e52e9d15-6656-4699-a275-5ef91998c106" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 106.941177, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "51a4f69f-7201-4c33-a8e1-4b9642f0c9b0" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "51a4f69f-7201-4c33-a8e1-4b9642f0c9b0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "51a4f69f-7201-4c33-a8e1-4b9642f0c9b0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "51a4f69f-7201-4c33-a8e1-4b9642f0c9b0" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "59ad9d67-e9a6-47ae-8817-7dd64c45be94" + }, + "attachedElementGuid" : { + "value" : "51a4f69f-7201-4c33-a8e1-4b9642f0c9b0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "59ad9d67-e9a6-47ae-8817-7dd64c45be94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "59ad9d67-e9a6-47ae-8817-7dd64c45be94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "59ad9d67-e9a6-47ae-8817-7dd64c45be94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "59ad9d67-e9a6-47ae-8817-7dd64c45be94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 107.117653, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2fb37911-b458-4771-aadb-c10deaac43a1" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2fb37911-b458-4771-aadb-c10deaac43a1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "2fb37911-b458-4771-aadb-c10deaac43a1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "2fb37911-b458-4771-aadb-c10deaac43a1" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5276dcd1-9363-48b0-bbb0-ceb6184a65e1" + }, + "attachedElementGuid" : { + "value" : "2fb37911-b458-4771-aadb-c10deaac43a1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5276dcd1-9363-48b0-bbb0-ceb6184a65e1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5276dcd1-9363-48b0-bbb0-ceb6184a65e1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5276dcd1-9363-48b0-bbb0-ceb6184a65e1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "5276dcd1-9363-48b0-bbb0-ceb6184a65e1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 107.294121, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9a7dfca4-11a2-4480-8f64-0b9e44f034d2" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9a7dfca4-11a2-4480-8f64-0b9e44f034d2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "9a7dfca4-11a2-4480-8f64-0b9e44f034d2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "9a7dfca4-11a2-4480-8f64-0b9e44f034d2" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5183568d-c08a-4b93-94ac-3ad12f50038f" + }, + "attachedElementGuid" : { + "value" : "9a7dfca4-11a2-4480-8f64-0b9e44f034d2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5183568d-c08a-4b93-94ac-3ad12f50038f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5183568d-c08a-4b93-94ac-3ad12f50038f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5183568d-c08a-4b93-94ac-3ad12f50038f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "5183568d-c08a-4b93-94ac-3ad12f50038f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 107.558823, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "803faa38-9b1c-4fde-b52e-b901cb0685fa" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "803faa38-9b1c-4fde-b52e-b901cb0685fa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "803faa38-9b1c-4fde-b52e-b901cb0685fa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "803faa38-9b1c-4fde-b52e-b901cb0685fa" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0acef2d5-2215-45a0-8757-f30c079567ef" + }, + "attachedElementGuid" : { + "value" : "803faa38-9b1c-4fde-b52e-b901cb0685fa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0acef2d5-2215-45a0-8757-f30c079567ef" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0acef2d5-2215-45a0-8757-f30c079567ef" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0acef2d5-2215-45a0-8757-f30c079567ef" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "0acef2d5-2215-45a0-8757-f30c079567ef" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 107.647064, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a3f0bdc3-bd17-469d-96cf-1cf844d23b0e" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a3f0bdc3-bd17-469d-96cf-1cf844d23b0e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "a3f0bdc3-bd17-469d-96cf-1cf844d23b0e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "a3f0bdc3-bd17-469d-96cf-1cf844d23b0e" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ec5f1d15-fa77-4a3b-bf72-7e39a7fec6cc" + }, + "attachedElementGuid" : { + "value" : "a3f0bdc3-bd17-469d-96cf-1cf844d23b0e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ec5f1d15-fa77-4a3b-bf72-7e39a7fec6cc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ec5f1d15-fa77-4a3b-bf72-7e39a7fec6cc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ec5f1d15-fa77-4a3b-bf72-7e39a7fec6cc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "ec5f1d15-fa77-4a3b-bf72-7e39a7fec6cc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 107.823532, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e6799d2b-1d19-425f-9343-c2fdf15f6180" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e6799d2b-1d19-425f-9343-c2fdf15f6180" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "e6799d2b-1d19-425f-9343-c2fdf15f6180" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "e6799d2b-1d19-425f-9343-c2fdf15f6180" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8f04f76d-fe97-426c-bd58-22fca25c7f9e" + }, + "attachedElementGuid" : { + "value" : "e6799d2b-1d19-425f-9343-c2fdf15f6180" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8f04f76d-fe97-426c-bd58-22fca25c7f9e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8f04f76d-fe97-426c-bd58-22fca25c7f9e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8f04f76d-fe97-426c-bd58-22fca25c7f9e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "8f04f76d-fe97-426c-bd58-22fca25c7f9e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 107.911766, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b05f9de9-d6f5-492c-89af-4bed838b7d8a" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b05f9de9-d6f5-492c-89af-4bed838b7d8a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "b05f9de9-d6f5-492c-89af-4bed838b7d8a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "b05f9de9-d6f5-492c-89af-4bed838b7d8a" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "32e3c03f-ae08-4528-a02d-478c4d586cc2" + }, + "attachedElementGuid" : { + "value" : "b05f9de9-d6f5-492c-89af-4bed838b7d8a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "32e3c03f-ae08-4528-a02d-478c4d586cc2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "32e3c03f-ae08-4528-a02d-478c4d586cc2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "32e3c03f-ae08-4528-a02d-478c4d586cc2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "32e3c03f-ae08-4528-a02d-478c4d586cc2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 108.088242, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6e776c8b-f1f8-489a-80da-38ebed262de9" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6e776c8b-f1f8-489a-80da-38ebed262de9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "6e776c8b-f1f8-489a-80da-38ebed262de9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "6e776c8b-f1f8-489a-80da-38ebed262de9" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cea5fe54-bd5f-4cbd-a919-44a2c2b8d9e1" + }, + "attachedElementGuid" : { + "value" : "6e776c8b-f1f8-489a-80da-38ebed262de9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "cea5fe54-bd5f-4cbd-a919-44a2c2b8d9e1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "cea5fe54-bd5f-4cbd-a919-44a2c2b8d9e1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "cea5fe54-bd5f-4cbd-a919-44a2c2b8d9e1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "cea5fe54-bd5f-4cbd-a919-44a2c2b8d9e1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 108.176476, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f9e7bead-ba2a-444e-920f-c8b4eae78008" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f9e7bead-ba2a-444e-920f-c8b4eae78008" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "f9e7bead-ba2a-444e-920f-c8b4eae78008" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "f9e7bead-ba2a-444e-920f-c8b4eae78008" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "461de2af-a578-4d5d-966f-027e9565afb9" + }, + "attachedElementGuid" : { + "value" : "f9e7bead-ba2a-444e-920f-c8b4eae78008" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "461de2af-a578-4d5d-966f-027e9565afb9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "461de2af-a578-4d5d-966f-027e9565afb9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "461de2af-a578-4d5d-966f-027e9565afb9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "461de2af-a578-4d5d-966f-027e9565afb9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 108.352943, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "50a03637-23e5-4309-a893-9e56d56a232c" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "50a03637-23e5-4309-a893-9e56d56a232c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "50a03637-23e5-4309-a893-9e56d56a232c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "50a03637-23e5-4309-a893-9e56d56a232c" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "229312ba-d66a-45b4-a2ee-8037f3c68057" + }, + "attachedElementGuid" : { + "value" : "50a03637-23e5-4309-a893-9e56d56a232c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "229312ba-d66a-45b4-a2ee-8037f3c68057" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "229312ba-d66a-45b4-a2ee-8037f3c68057" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "229312ba-d66a-45b4-a2ee-8037f3c68057" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "229312ba-d66a-45b4-a2ee-8037f3c68057" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 108.529411, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f236eaee-6230-483d-a424-46d3d73eb3fc" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f236eaee-6230-483d-a424-46d3d73eb3fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "f236eaee-6230-483d-a424-46d3d73eb3fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "f236eaee-6230-483d-a424-46d3d73eb3fc" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ef1491b6-629b-4f7d-be7d-183268c8c38e" + }, + "attachedElementGuid" : { + "value" : "f236eaee-6230-483d-a424-46d3d73eb3fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ef1491b6-629b-4f7d-be7d-183268c8c38e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ef1491b6-629b-4f7d-be7d-183268c8c38e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ef1491b6-629b-4f7d-be7d-183268c8c38e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "ef1491b6-629b-4f7d-be7d-183268c8c38e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 108.705887, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "be907135-10f2-48e9-a446-707082974672" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "be907135-10f2-48e9-a446-707082974672" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "be907135-10f2-48e9-a446-707082974672" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "be907135-10f2-48e9-a446-707082974672" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7ab90c4f-52a6-4b33-986c-8294ccff5c46" + }, + "attachedElementGuid" : { + "value" : "be907135-10f2-48e9-a446-707082974672" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7ab90c4f-52a6-4b33-986c-8294ccff5c46" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7ab90c4f-52a6-4b33-986c-8294ccff5c46" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "7ab90c4f-52a6-4b33-986c-8294ccff5c46" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "7ab90c4f-52a6-4b33-986c-8294ccff5c46" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 108.970589, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6f808899-1b59-4519-b7f8-acb385ac942a" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6f808899-1b59-4519-b7f8-acb385ac942a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "6f808899-1b59-4519-b7f8-acb385ac942a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "6f808899-1b59-4519-b7f8-acb385ac942a" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0f78044f-16d7-450d-bacf-6d3776713fc9" + }, + "attachedElementGuid" : { + "value" : "6f808899-1b59-4519-b7f8-acb385ac942a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0f78044f-16d7-450d-bacf-6d3776713fc9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0f78044f-16d7-450d-bacf-6d3776713fc9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0f78044f-16d7-450d-bacf-6d3776713fc9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "0f78044f-16d7-450d-bacf-6d3776713fc9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 109.058823, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "db1f75c9-55bb-4943-bd63-0807ece8ba1b" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "db1f75c9-55bb-4943-bd63-0807ece8ba1b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "db1f75c9-55bb-4943-bd63-0807ece8ba1b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "db1f75c9-55bb-4943-bd63-0807ece8ba1b" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "38bdc928-9419-4fa5-82e3-fcc8914ce4bc" + }, + "attachedElementGuid" : { + "value" : "db1f75c9-55bb-4943-bd63-0807ece8ba1b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "38bdc928-9419-4fa5-82e3-fcc8914ce4bc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "38bdc928-9419-4fa5-82e3-fcc8914ce4bc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "38bdc928-9419-4fa5-82e3-fcc8914ce4bc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "38bdc928-9419-4fa5-82e3-fcc8914ce4bc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 109.2353, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "48a44f81-332b-4b7a-9b5c-d5a2679c0684" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "48a44f81-332b-4b7a-9b5c-d5a2679c0684" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "48a44f81-332b-4b7a-9b5c-d5a2679c0684" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "48a44f81-332b-4b7a-9b5c-d5a2679c0684" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5064a2c3-8cf2-4085-a291-efb4420765da" + }, + "attachedElementGuid" : { + "value" : "48a44f81-332b-4b7a-9b5c-d5a2679c0684" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5064a2c3-8cf2-4085-a291-efb4420765da" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5064a2c3-8cf2-4085-a291-efb4420765da" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5064a2c3-8cf2-4085-a291-efb4420765da" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "5064a2c3-8cf2-4085-a291-efb4420765da" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 109.323532, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6c033292-42ae-4ab8-b750-efa20b49e3c2" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6c033292-42ae-4ab8-b750-efa20b49e3c2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "6c033292-42ae-4ab8-b750-efa20b49e3c2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "6c033292-42ae-4ab8-b750-efa20b49e3c2" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4c2568b5-b514-4bc1-9488-d7eeeb171b89" + }, + "attachedElementGuid" : { + "value" : "6c033292-42ae-4ab8-b750-efa20b49e3c2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4c2568b5-b514-4bc1-9488-d7eeeb171b89" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4c2568b5-b514-4bc1-9488-d7eeeb171b89" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4c2568b5-b514-4bc1-9488-d7eeeb171b89" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "4c2568b5-b514-4bc1-9488-d7eeeb171b89" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 109.5, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7e9a45a6-1a70-41ae-aa09-e4441bda483d" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7e9a45a6-1a70-41ae-aa09-e4441bda483d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "7e9a45a6-1a70-41ae-aa09-e4441bda483d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "7e9a45a6-1a70-41ae-aa09-e4441bda483d" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "62e21388-be91-483b-b56c-2c37b3fdafb3" + }, + "attachedElementGuid" : { + "value" : "7e9a45a6-1a70-41ae-aa09-e4441bda483d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "62e21388-be91-483b-b56c-2c37b3fdafb3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "62e21388-be91-483b-b56c-2c37b3fdafb3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "62e21388-be91-483b-b56c-2c37b3fdafb3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "62e21388-be91-483b-b56c-2c37b3fdafb3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 109.588242, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "db1b92d1-d731-429b-aa7b-db4731e7765d" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "db1b92d1-d731-429b-aa7b-db4731e7765d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "db1b92d1-d731-429b-aa7b-db4731e7765d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "db1b92d1-d731-429b-aa7b-db4731e7765d" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9255ceb4-5d1b-49e2-a444-37bac5a9535d" + }, + "attachedElementGuid" : { + "value" : "db1b92d1-d731-429b-aa7b-db4731e7765d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9255ceb4-5d1b-49e2-a444-37bac5a9535d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9255ceb4-5d1b-49e2-a444-37bac5a9535d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "9255ceb4-5d1b-49e2-a444-37bac5a9535d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "9255ceb4-5d1b-49e2-a444-37bac5a9535d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 109.764709, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a22b9048-25b4-447b-ba76-5ef42c1cd320" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a22b9048-25b4-447b-ba76-5ef42c1cd320" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "a22b9048-25b4-447b-ba76-5ef42c1cd320" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "a22b9048-25b4-447b-ba76-5ef42c1cd320" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1a110ee4-f426-408e-a414-15bce18d4cf3" + }, + "attachedElementGuid" : { + "value" : "a22b9048-25b4-447b-ba76-5ef42c1cd320" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "1a110ee4-f426-408e-a414-15bce18d4cf3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1a110ee4-f426-408e-a414-15bce18d4cf3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "1a110ee4-f426-408e-a414-15bce18d4cf3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "1a110ee4-f426-408e-a414-15bce18d4cf3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 109.941177, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "626f9edf-8545-4eab-947b-4c320293e2ae" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "626f9edf-8545-4eab-947b-4c320293e2ae" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "626f9edf-8545-4eab-947b-4c320293e2ae" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "626f9edf-8545-4eab-947b-4c320293e2ae" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b0b48df5-98f3-4934-a839-44364627eded" + }, + "attachedElementGuid" : { + "value" : "626f9edf-8545-4eab-947b-4c320293e2ae" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b0b48df5-98f3-4934-a839-44364627eded" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b0b48df5-98f3-4934-a839-44364627eded" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b0b48df5-98f3-4934-a839-44364627eded" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "b0b48df5-98f3-4934-a839-44364627eded" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 110.117653, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7498b98f-3a3d-41f6-96a4-8daeca7f656b" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7498b98f-3a3d-41f6-96a4-8daeca7f656b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "7498b98f-3a3d-41f6-96a4-8daeca7f656b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "7498b98f-3a3d-41f6-96a4-8daeca7f656b" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5b15db47-0779-4f4b-8af5-c1c86e4c1e31" + }, + "attachedElementGuid" : { + "value" : "7498b98f-3a3d-41f6-96a4-8daeca7f656b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5b15db47-0779-4f4b-8af5-c1c86e4c1e31" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5b15db47-0779-4f4b-8af5-c1c86e4c1e31" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5b15db47-0779-4f4b-8af5-c1c86e4c1e31" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "5b15db47-0779-4f4b-8af5-c1c86e4c1e31" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 110.382355, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4dd204f7-ca34-49f6-a1b1-b43f6b383713" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4dd204f7-ca34-49f6-a1b1-b43f6b383713" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "4dd204f7-ca34-49f6-a1b1-b43f6b383713" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "4dd204f7-ca34-49f6-a1b1-b43f6b383713" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c300a8cd-9fcc-4da9-84f5-fffc2ae1a0f4" + }, + "attachedElementGuid" : { + "value" : "4dd204f7-ca34-49f6-a1b1-b43f6b383713" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c300a8cd-9fcc-4da9-84f5-fffc2ae1a0f4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c300a8cd-9fcc-4da9-84f5-fffc2ae1a0f4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c300a8cd-9fcc-4da9-84f5-fffc2ae1a0f4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "c300a8cd-9fcc-4da9-84f5-fffc2ae1a0f4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 110.470589, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "957a5b76-f315-49fa-8885-4b984fbdcb3a" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "957a5b76-f315-49fa-8885-4b984fbdcb3a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "957a5b76-f315-49fa-8885-4b984fbdcb3a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "957a5b76-f315-49fa-8885-4b984fbdcb3a" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "322628b3-b4a8-45d5-a847-afa37fb4f869" + }, + "attachedElementGuid" : { + "value" : "957a5b76-f315-49fa-8885-4b984fbdcb3a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "322628b3-b4a8-45d5-a847-afa37fb4f869" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "322628b3-b4a8-45d5-a847-afa37fb4f869" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "322628b3-b4a8-45d5-a847-afa37fb4f869" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "322628b3-b4a8-45d5-a847-afa37fb4f869" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 110.647064, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "11161a90-30e1-4832-82dd-25b2e5b71a97" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "11161a90-30e1-4832-82dd-25b2e5b71a97" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "11161a90-30e1-4832-82dd-25b2e5b71a97" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "11161a90-30e1-4832-82dd-25b2e5b71a97" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b7582201-1ed0-455d-ada6-ee4811654d08" + }, + "attachedElementGuid" : { + "value" : "11161a90-30e1-4832-82dd-25b2e5b71a97" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b7582201-1ed0-455d-ada6-ee4811654d08" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b7582201-1ed0-455d-ada6-ee4811654d08" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b7582201-1ed0-455d-ada6-ee4811654d08" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "b7582201-1ed0-455d-ada6-ee4811654d08" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 110.7353, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e3972abf-f59b-4530-b794-3ea04d2f0f95" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e3972abf-f59b-4530-b794-3ea04d2f0f95" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "e3972abf-f59b-4530-b794-3ea04d2f0f95" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "e3972abf-f59b-4530-b794-3ea04d2f0f95" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b1d920ad-5b6d-4e4a-8960-d0c288954e5a" + }, + "attachedElementGuid" : { + "value" : "e3972abf-f59b-4530-b794-3ea04d2f0f95" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b1d920ad-5b6d-4e4a-8960-d0c288954e5a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b1d920ad-5b6d-4e4a-8960-d0c288954e5a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b1d920ad-5b6d-4e4a-8960-d0c288954e5a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "b1d920ad-5b6d-4e4a-8960-d0c288954e5a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 110.911766, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "91a0f1b4-8913-466f-b57c-0df82fad43e9" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "91a0f1b4-8913-466f-b57c-0df82fad43e9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "91a0f1b4-8913-466f-b57c-0df82fad43e9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "91a0f1b4-8913-466f-b57c-0df82fad43e9" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9265d238-e126-4578-9a8c-735d9d92f73d" + }, + "attachedElementGuid" : { + "value" : "91a0f1b4-8913-466f-b57c-0df82fad43e9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9265d238-e126-4578-9a8c-735d9d92f73d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9265d238-e126-4578-9a8c-735d9d92f73d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "9265d238-e126-4578-9a8c-735d9d92f73d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "9265d238-e126-4578-9a8c-735d9d92f73d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 111, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "07540d16-5095-4708-8138-b3c8a358d2d5" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "07540d16-5095-4708-8138-b3c8a358d2d5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "07540d16-5095-4708-8138-b3c8a358d2d5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "07540d16-5095-4708-8138-b3c8a358d2d5" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1868201c-cf07-45d2-a0d7-af63f895e2a4" + }, + "attachedElementGuid" : { + "value" : "07540d16-5095-4708-8138-b3c8a358d2d5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "1868201c-cf07-45d2-a0d7-af63f895e2a4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1868201c-cf07-45d2-a0d7-af63f895e2a4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "1868201c-cf07-45d2-a0d7-af63f895e2a4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "1868201c-cf07-45d2-a0d7-af63f895e2a4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 111.176476, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cc3e9616-0658-49d9-9751-fc10398874ca" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "cc3e9616-0658-49d9-9751-fc10398874ca" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "cc3e9616-0658-49d9-9751-fc10398874ca" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "cc3e9616-0658-49d9-9751-fc10398874ca" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a9902416-975a-4b7e-bfdf-47da7d143071" + }, + "attachedElementGuid" : { + "value" : "cc3e9616-0658-49d9-9751-fc10398874ca" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a9902416-975a-4b7e-bfdf-47da7d143071" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a9902416-975a-4b7e-bfdf-47da7d143071" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a9902416-975a-4b7e-bfdf-47da7d143071" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "a9902416-975a-4b7e-bfdf-47da7d143071" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 111.352943, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "44a74459-3737-4d89-89f7-27c1a994f7f6" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "44a74459-3737-4d89-89f7-27c1a994f7f6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "44a74459-3737-4d89-89f7-27c1a994f7f6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "44a74459-3737-4d89-89f7-27c1a994f7f6" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c0818e8d-35dd-4c9f-a037-c99a3905b2cf" + }, + "attachedElementGuid" : { + "value" : "44a74459-3737-4d89-89f7-27c1a994f7f6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c0818e8d-35dd-4c9f-a037-c99a3905b2cf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c0818e8d-35dd-4c9f-a037-c99a3905b2cf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c0818e8d-35dd-4c9f-a037-c99a3905b2cf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "c0818e8d-35dd-4c9f-a037-c99a3905b2cf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 111.529411, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bb222c2d-8fc6-44de-b612-07a0e1253bac" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bb222c2d-8fc6-44de-b612-07a0e1253bac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "bb222c2d-8fc6-44de-b612-07a0e1253bac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "bb222c2d-8fc6-44de-b612-07a0e1253bac" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b79e24b9-0acf-48f9-addc-6a25dca92d09" + }, + "attachedElementGuid" : { + "value" : "bb222c2d-8fc6-44de-b612-07a0e1253bac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b79e24b9-0acf-48f9-addc-6a25dca92d09" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b79e24b9-0acf-48f9-addc-6a25dca92d09" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b79e24b9-0acf-48f9-addc-6a25dca92d09" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "b79e24b9-0acf-48f9-addc-6a25dca92d09" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 111.794121, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9a71a1ca-5646-4519-a4e8-451a2b09ed7b" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9a71a1ca-5646-4519-a4e8-451a2b09ed7b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "9a71a1ca-5646-4519-a4e8-451a2b09ed7b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "9a71a1ca-5646-4519-a4e8-451a2b09ed7b" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0bccb52b-228e-4ae1-bbd0-159cb3518ff4" + }, + "attachedElementGuid" : { + "value" : "9a71a1ca-5646-4519-a4e8-451a2b09ed7b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0bccb52b-228e-4ae1-bbd0-159cb3518ff4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0bccb52b-228e-4ae1-bbd0-159cb3518ff4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0bccb52b-228e-4ae1-bbd0-159cb3518ff4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "0bccb52b-228e-4ae1-bbd0-159cb3518ff4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 111.882355, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "73452231-5f96-4494-b809-e8643c9b21cf" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "73452231-5f96-4494-b809-e8643c9b21cf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "73452231-5f96-4494-b809-e8643c9b21cf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "73452231-5f96-4494-b809-e8643c9b21cf" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "71ab763f-0264-4162-a675-fbd1072ce653" + }, + "attachedElementGuid" : { + "value" : "73452231-5f96-4494-b809-e8643c9b21cf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "71ab763f-0264-4162-a675-fbd1072ce653" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "71ab763f-0264-4162-a675-fbd1072ce653" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "71ab763f-0264-4162-a675-fbd1072ce653" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "71ab763f-0264-4162-a675-fbd1072ce653" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 112.058823, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "04d43d36-5b64-48e1-a84a-a4b08344319a" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "04d43d36-5b64-48e1-a84a-a4b08344319a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "04d43d36-5b64-48e1-a84a-a4b08344319a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "04d43d36-5b64-48e1-a84a-a4b08344319a" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3a77e597-3c98-41b3-a994-1db2ea0255d2" + }, + "attachedElementGuid" : { + "value" : "04d43d36-5b64-48e1-a84a-a4b08344319a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3a77e597-3c98-41b3-a994-1db2ea0255d2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3a77e597-3c98-41b3-a994-1db2ea0255d2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3a77e597-3c98-41b3-a994-1db2ea0255d2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "3a77e597-3c98-41b3-a994-1db2ea0255d2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 112.147064, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "625c8d66-aba1-4ff9-9165-71c4b36f3f59" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "625c8d66-aba1-4ff9-9165-71c4b36f3f59" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "625c8d66-aba1-4ff9-9165-71c4b36f3f59" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "625c8d66-aba1-4ff9-9165-71c4b36f3f59" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "827f06c6-d9e5-40b9-b02b-099f1ca3385c" + }, + "attachedElementGuid" : { + "value" : "625c8d66-aba1-4ff9-9165-71c4b36f3f59" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "827f06c6-d9e5-40b9-b02b-099f1ca3385c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "827f06c6-d9e5-40b9-b02b-099f1ca3385c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "827f06c6-d9e5-40b9-b02b-099f1ca3385c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "827f06c6-d9e5-40b9-b02b-099f1ca3385c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 112.323532, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a240c055-f5d9-4740-80e8-d5e1056345e9" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a240c055-f5d9-4740-80e8-d5e1056345e9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "a240c055-f5d9-4740-80e8-d5e1056345e9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "a240c055-f5d9-4740-80e8-d5e1056345e9" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c26db451-6f74-40fc-a872-2255a6048e99" + }, + "attachedElementGuid" : { + "value" : "a240c055-f5d9-4740-80e8-d5e1056345e9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c26db451-6f74-40fc-a872-2255a6048e99" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c26db451-6f74-40fc-a872-2255a6048e99" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c26db451-6f74-40fc-a872-2255a6048e99" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "c26db451-6f74-40fc-a872-2255a6048e99" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 112.411766, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "dd1ae667-c156-44d8-b0d4-7a5470d0441d" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "dd1ae667-c156-44d8-b0d4-7a5470d0441d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "dd1ae667-c156-44d8-b0d4-7a5470d0441d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "dd1ae667-c156-44d8-b0d4-7a5470d0441d" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "de507372-f03a-4930-89c0-3d150a9829fe" + }, + "attachedElementGuid" : { + "value" : "dd1ae667-c156-44d8-b0d4-7a5470d0441d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "de507372-f03a-4930-89c0-3d150a9829fe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "de507372-f03a-4930-89c0-3d150a9829fe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "de507372-f03a-4930-89c0-3d150a9829fe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "de507372-f03a-4930-89c0-3d150a9829fe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 112.588242, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "01d49e8d-a072-417a-9b32-d9bd5ceac5e9" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "01d49e8d-a072-417a-9b32-d9bd5ceac5e9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "01d49e8d-a072-417a-9b32-d9bd5ceac5e9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "01d49e8d-a072-417a-9b32-d9bd5ceac5e9" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "359d6413-784a-404f-86d5-539f07161be0" + }, + "attachedElementGuid" : { + "value" : "01d49e8d-a072-417a-9b32-d9bd5ceac5e9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "359d6413-784a-404f-86d5-539f07161be0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "359d6413-784a-404f-86d5-539f07161be0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "359d6413-784a-404f-86d5-539f07161be0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "359d6413-784a-404f-86d5-539f07161be0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 112.764709, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8838ab95-2991-4021-806a-6242af255dd6" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8838ab95-2991-4021-806a-6242af255dd6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "8838ab95-2991-4021-806a-6242af255dd6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "8838ab95-2991-4021-806a-6242af255dd6" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "dac0a813-5a2f-4742-b220-6a04a372b50d" + }, + "attachedElementGuid" : { + "value" : "8838ab95-2991-4021-806a-6242af255dd6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "dac0a813-5a2f-4742-b220-6a04a372b50d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "dac0a813-5a2f-4742-b220-6a04a372b50d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "dac0a813-5a2f-4742-b220-6a04a372b50d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "dac0a813-5a2f-4742-b220-6a04a372b50d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 112.941177, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7091d710-6ace-41f8-91c5-20ace87a6af6" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7091d710-6ace-41f8-91c5-20ace87a6af6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "7091d710-6ace-41f8-91c5-20ace87a6af6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "7091d710-6ace-41f8-91c5-20ace87a6af6" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "afcd373a-8b46-4970-9e05-eabdf1757d27" + }, + "attachedElementGuid" : { + "value" : "7091d710-6ace-41f8-91c5-20ace87a6af6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "afcd373a-8b46-4970-9e05-eabdf1757d27" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "afcd373a-8b46-4970-9e05-eabdf1757d27" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "afcd373a-8b46-4970-9e05-eabdf1757d27" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "afcd373a-8b46-4970-9e05-eabdf1757d27" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 113.205887, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "24ebdabc-b662-4dfa-88aa-b9da3c9faf5e" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "24ebdabc-b662-4dfa-88aa-b9da3c9faf5e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "24ebdabc-b662-4dfa-88aa-b9da3c9faf5e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "24ebdabc-b662-4dfa-88aa-b9da3c9faf5e" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5876ab0a-3247-4f09-aede-4b4a29f0d227" + }, + "attachedElementGuid" : { + "value" : "24ebdabc-b662-4dfa-88aa-b9da3c9faf5e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5876ab0a-3247-4f09-aede-4b4a29f0d227" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5876ab0a-3247-4f09-aede-4b4a29f0d227" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5876ab0a-3247-4f09-aede-4b4a29f0d227" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "5876ab0a-3247-4f09-aede-4b4a29f0d227" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 113.294121, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f5442265-5e0d-4ac0-809d-4eb878c84364" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f5442265-5e0d-4ac0-809d-4eb878c84364" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "f5442265-5e0d-4ac0-809d-4eb878c84364" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "f5442265-5e0d-4ac0-809d-4eb878c84364" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f3383373-b13b-4de5-83b2-ee3f16424de0" + }, + "attachedElementGuid" : { + "value" : "f5442265-5e0d-4ac0-809d-4eb878c84364" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f3383373-b13b-4de5-83b2-ee3f16424de0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f3383373-b13b-4de5-83b2-ee3f16424de0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f3383373-b13b-4de5-83b2-ee3f16424de0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "f3383373-b13b-4de5-83b2-ee3f16424de0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 113.470589, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "159aa774-c646-4f48-be8b-ad947b5a505b" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "159aa774-c646-4f48-be8b-ad947b5a505b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "159aa774-c646-4f48-be8b-ad947b5a505b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "159aa774-c646-4f48-be8b-ad947b5a505b" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c4ba6409-a0da-495d-b8d9-5b1fac5c43d9" + }, + "attachedElementGuid" : { + "value" : "159aa774-c646-4f48-be8b-ad947b5a505b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c4ba6409-a0da-495d-b8d9-5b1fac5c43d9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c4ba6409-a0da-495d-b8d9-5b1fac5c43d9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c4ba6409-a0da-495d-b8d9-5b1fac5c43d9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "c4ba6409-a0da-495d-b8d9-5b1fac5c43d9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 113.558823, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "23ca0d04-96e1-4e89-afd3-36037814c6bf" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "23ca0d04-96e1-4e89-afd3-36037814c6bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "23ca0d04-96e1-4e89-afd3-36037814c6bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "23ca0d04-96e1-4e89-afd3-36037814c6bf" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b61521c0-17fe-40fc-a3c4-52ba40d59656" + }, + "attachedElementGuid" : { + "value" : "23ca0d04-96e1-4e89-afd3-36037814c6bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b61521c0-17fe-40fc-a3c4-52ba40d59656" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b61521c0-17fe-40fc-a3c4-52ba40d59656" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b61521c0-17fe-40fc-a3c4-52ba40d59656" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "b61521c0-17fe-40fc-a3c4-52ba40d59656" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 113.7353, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "598b02af-8631-4cfb-a6d4-10edf83daf54" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "598b02af-8631-4cfb-a6d4-10edf83daf54" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "598b02af-8631-4cfb-a6d4-10edf83daf54" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "598b02af-8631-4cfb-a6d4-10edf83daf54" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e8e28bfe-2340-4284-ad6f-3d2e009d0062" + }, + "attachedElementGuid" : { + "value" : "598b02af-8631-4cfb-a6d4-10edf83daf54" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e8e28bfe-2340-4284-ad6f-3d2e009d0062" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e8e28bfe-2340-4284-ad6f-3d2e009d0062" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e8e28bfe-2340-4284-ad6f-3d2e009d0062" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "e8e28bfe-2340-4284-ad6f-3d2e009d0062" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 113.823532, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e4d1fa28-f0c2-4bfe-a5d9-584098518905" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e4d1fa28-f0c2-4bfe-a5d9-584098518905" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "e4d1fa28-f0c2-4bfe-a5d9-584098518905" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "e4d1fa28-f0c2-4bfe-a5d9-584098518905" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e34c7223-7a10-4789-8531-dd8b11c02fef" + }, + "attachedElementGuid" : { + "value" : "e4d1fa28-f0c2-4bfe-a5d9-584098518905" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e34c7223-7a10-4789-8531-dd8b11c02fef" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e34c7223-7a10-4789-8531-dd8b11c02fef" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e34c7223-7a10-4789-8531-dd8b11c02fef" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "e34c7223-7a10-4789-8531-dd8b11c02fef" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 114, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "17f5dfb6-ea1e-431c-9c46-217d88a94f96" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "17f5dfb6-ea1e-431c-9c46-217d88a94f96" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "17f5dfb6-ea1e-431c-9c46-217d88a94f96" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "17f5dfb6-ea1e-431c-9c46-217d88a94f96" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b664f03d-0383-49a4-b7cd-17422a75c2c3" + }, + "attachedElementGuid" : { + "value" : "17f5dfb6-ea1e-431c-9c46-217d88a94f96" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b664f03d-0383-49a4-b7cd-17422a75c2c3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b664f03d-0383-49a4-b7cd-17422a75c2c3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b664f03d-0383-49a4-b7cd-17422a75c2c3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "b664f03d-0383-49a4-b7cd-17422a75c2c3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 114.176476, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "757b57df-cba1-4aaa-84b5-8558bab00d7e" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "757b57df-cba1-4aaa-84b5-8558bab00d7e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "757b57df-cba1-4aaa-84b5-8558bab00d7e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "757b57df-cba1-4aaa-84b5-8558bab00d7e" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "97d3f5d6-c36a-4c49-ae2d-6af96a6b756d" + }, + "attachedElementGuid" : { + "value" : "757b57df-cba1-4aaa-84b5-8558bab00d7e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "97d3f5d6-c36a-4c49-ae2d-6af96a6b756d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "97d3f5d6-c36a-4c49-ae2d-6af96a6b756d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "97d3f5d6-c36a-4c49-ae2d-6af96a6b756d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "97d3f5d6-c36a-4c49-ae2d-6af96a6b756d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 114.352943, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8f9f928b-3176-4788-bbb7-c8987f31af7f" + }, + "attachedElementGuid" : { + "value" : "93b67e19-aa27-4361-8321-cb3fd8b25238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8f9f928b-3176-4788-bbb7-c8987f31af7f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "8f9f928b-3176-4788-bbb7-c8987f31af7f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "8f9f928b-3176-4788-bbb7-c8987f31af7f" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "94b539d0-e4db-4a8d-9a38-d38039aca9ba" + }, + "attachedElementGuid" : { + "value" : "8f9f928b-3176-4788-bbb7-c8987f31af7f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "94b539d0-e4db-4a8d-9a38-d38039aca9ba" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "94b539d0-e4db-4a8d-9a38-d38039aca9ba" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "94b539d0-e4db-4a8d-9a38-d38039aca9ba" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "94b539d0-e4db-4a8d-9a38-d38039aca9ba" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeEffectsCollection_BM,Assembly-CSharp", + "time" : 103.058, + "elementName" : "p8", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0a76a3ab-b121-447d-8d72-347055790ae3" + }, + "attachedElementGuid" : { + "value" : "e127cd4a-8578-4426-b03f-eca4e25a6ff8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0a76a3ab-b121-447d-8d72-347055790ae3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Prior":[ + + ],"Default":[ + { + "__type" : "Ichni.RhythmGame.Beatmap.BloomEffect_BM,Assembly-CSharp", + "duration" : 11.294, + "peak" : 2, + "intensityCurve" : { + "keys" : [ + { + "time" : 0, + "value" : 0, + "inTangent" : 0, + "outTangent" : 0 + },{ + "time" : 0.5, + "value" : 1, + "inTangent" : 0, + "outTangent" : 0 + },{ + "time" : 1, + "value" : 0, + "inTangent" : 0, + "outTangent" : 0 + } + ], + "preWrapMode" : 8, + "postWrapMode" : 8 + }, + "effectTime" : 0 + } + ],"Late":[ + + ] + }, + "attachedElementGuid" : { + "value" : "0a76a3ab-b121-447d-8d72-347055790ae3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Displacement_BM,Assembly-CSharp", + "positionX" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 0, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 5, + "startTime" : 112.941, + "endTime" : 114.352, + "animationCurveType" : 2 + } + ] + }, + "positionY" : { + "animatedFloatList" : [ + + ] + }, + "positionZ" : { + "animatedFloatList" : [ + + ] + }, + "elementName" : "New Displacement", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f4bcbc15-02ea-45c5-b549-c2896cc8eeac" + }, + "attachedElementGuid" : { + "value" : "f1193758-70b6-40ca-90b5-f283f968acb8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f4bcbc15-02ea-45c5-b549-c2896cc8eeac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Displacement_BM,Assembly-CSharp", + "positionX" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 0, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : -5, + "startTime" : 112.941, + "endTime" : 114.352, + "animationCurveType" : 2 + } + ] + }, + "positionY" : { + "animatedFloatList" : [ + + ] + }, + "positionZ" : { + "animatedFloatList" : [ + + ] + }, + "elementName" : "New Displacement", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4cfe6247-b90f-4f3e-a274-cbe3d383ecc3" + }, + "attachedElementGuid" : { + "value" : "92aef98b-ce5c-4ffc-a00a-b762f2902f25" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4cfe6247-b90f-4f3e-a274-cbe3d383ecc3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp", + "elementName" : "p9", + "tags" : [ + + ], + "elementGuid" : { + "value" : "000291b0-398f-45c2-b7a4-426be47b91ac" + }, + "attachedElementGuid" : { + "value" : "00000000-0000-0000-0000-000000000000" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "000291b0-398f-45c2-b7a4-426be47b91ac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "000291b0-398f-45c2-b7a4-426be47b91ac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "New Track", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ca0b1c11-cdf6-46de-ab4e-21011a55c2d6" + }, + "attachedElementGuid" : { + "value" : "000291b0-398f-45c2-b7a4-426be47b91ac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ca0b1c11-cdf6-46de-ab4e-21011a55c2d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ca0b1c11-cdf6-46de-ab4e-21011a55c2d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 0, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "ca0b1c11-cdf6-46de-ab4e-21011a55c2d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 114.352, + "trackEndTime" : 125.647, + "visibleTrackTimeLength" : 1, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "ca0b1c11-cdf6-46de-ab4e-21011a55c2d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3357d70f-1ccd-4908-94f6-19d4fed28c90" + }, + "attachedElementGuid" : { + "value" : "ca0b1c11-cdf6-46de-ab4e-21011a55c2d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 2, + "z" : 1900 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3357d70f-1ccd-4908-94f6-19d4fed28c90" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3357d70f-1ccd-4908-94f6-19d4fed28c90" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3357d70f-1ccd-4908-94f6-19d4fed28c90" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a544787c-0033-4dde-b110-7bdc28385f56" + }, + "attachedElementGuid" : { + "value" : "ca0b1c11-cdf6-46de-ab4e-21011a55c2d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 2, + "z" : 2068 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a544787c-0033-4dde-b110-7bdc28385f56" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a544787c-0033-4dde-b110-7bdc28385f56" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a544787c-0033-4dde-b110-7bdc28385f56" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6b882b5b-b9ef-42ce-8894-f76251e33226" + }, + "attachedElementGuid" : { + "value" : "ca0b1c11-cdf6-46de-ab4e-21011a55c2d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6b882b5b-b9ef-42ce-8894-f76251e33226" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + { + "startValue" : 0.5, + "endValue" : 0.5, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 114.352 + },{ + "value" : false, + "time" : 124.235 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "980fc504-f7a9-41e1-8f33-26c8a35e15d0" + }, + "attachedElementGuid" : { + "value" : "6b882b5b-b9ef-42ce-8894-f76251e33226" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "980fc504-f7a9-41e1-8f33-26c8a35e15d0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "980fc504-f7a9-41e1-8f33-26c8a35e15d0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "980fc504-f7a9-41e1-8f33-26c8a35e15d0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Displacement_BM,Assembly-CSharp", + "positionX" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 0, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 10, + "startTime" : 114.352, + "endTime" : 115.764, + "animationCurveType" : 0 + },{ + "startValue" : 10, + "endValue" : -4, + "startTime" : 115.764, + "endTime" : 117.176, + "animationCurveType" : 0 + },{ + "startValue" : -4, + "endValue" : 3, + "startTime" : 117.176, + "endTime" : 118.588, + "animationCurveType" : 0 + },{ + "startValue" : 3, + "endValue" : -7, + "startTime" : 118.588, + "endTime" : 120, + "animationCurveType" : 0 + },{ + "startValue" : -7, + "endValue" : 2, + "startTime" : 120, + "endTime" : 121.411, + "animationCurveType" : 0 + },{ + "startValue" : 2, + "endValue" : 10, + "startTime" : 121.411, + "endTime" : 122.823, + "animationCurveType" : 0 + },{ + "startValue" : 10, + "endValue" : 0, + "startTime" : 122.823, + "endTime" : 124.235, + "animationCurveType" : 0 + } + ] + }, + "positionY" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 0, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 10, + "startTime" : 114.352, + "endTime" : 115.058, + "animationCurveType" : 2 + },{ + "startValue" : 10, + "endValue" : 0, + "startTime" : 115.058, + "endTime" : 115.764, + "animationCurveType" : 1 + },{ + "startValue" : 0, + "endValue" : 10, + "startTime" : 115.764, + "endTime" : 116.47, + "animationCurveType" : 2 + },{ + "startValue" : 10, + "endValue" : 0, + "startTime" : 116.47, + "endTime" : 117.176, + "animationCurveType" : 1 + },{ + "startValue" : 0, + "endValue" : 10, + "startTime" : 117.176, + "endTime" : 117.882, + "animationCurveType" : 2 + },{ + "startValue" : 10, + "endValue" : 0, + "startTime" : 117.882, + "endTime" : 118.588, + "animationCurveType" : 1 + },{ + "startValue" : 0, + "endValue" : 10, + "startTime" : 118.588, + "endTime" : 119.294, + "animationCurveType" : 2 + },{ + "startValue" : 10, + "endValue" : 0, + "startTime" : 119.294, + "endTime" : 120, + "animationCurveType" : 1 + },{ + "startValue" : 0, + "endValue" : 10, + "startTime" : 120, + "endTime" : 120.705, + "animationCurveType" : 2 + },{ + "startValue" : 10, + "endValue" : 0, + "startTime" : 120.705, + "endTime" : 121.411, + "animationCurveType" : 1 + },{ + "startValue" : 0, + "endValue" : 10, + "startTime" : 121.411, + "endTime" : 122.117, + "animationCurveType" : 2 + },{ + "startValue" : 10, + "endValue" : 0, + "startTime" : 122.117, + "endTime" : 122.823, + "animationCurveType" : 1 + },{ + "startValue" : 0, + "endValue" : 10, + "startTime" : 122.823, + "endTime" : 123.529, + "animationCurveType" : 2 + },{ + "startValue" : 10, + "endValue" : 0, + "startTime" : 123.529, + "endTime" : 124.235, + "animationCurveType" : 1 + } + ] + }, + "positionZ" : { + "animatedFloatList" : [ + + ] + }, + "elementName" : "New Displacement", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2c73a6e0-7435-48db-a1a1-1aa9a45e0ad1" + }, + "attachedElementGuid" : { + "value" : "980fc504-f7a9-41e1-8f33-26c8a35e15d0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2c73a6e0-7435-48db-a1a1-1aa9a45e0ad1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 115.76, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a5845221-6fe3-43a2-8661-5ea12123af06" + }, + "attachedElementGuid" : { + "value" : "ca0b1c11-cdf6-46de-ab4e-21011a55c2d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a5845221-6fe3-43a2-8661-5ea12123af06" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "a5845221-6fe3-43a2-8661-5ea12123af06" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "a5845221-6fe3-43a2-8661-5ea12123af06" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2ec15a30-fa60-43e7-bcee-978168a6327a" + }, + "attachedElementGuid" : { + "value" : "a5845221-6fe3-43a2-8661-5ea12123af06" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 10, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2ec15a30-fa60-43e7-bcee-978168a6327a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2ec15a30-fa60-43e7-bcee-978168a6327a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "2ec15a30-fa60-43e7-bcee-978168a6327a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 2, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "2ec15a30-fa60-43e7-bcee-978168a6327a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 117.176, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5ff03757-6ebd-4098-9bf0-957228072ea7" + }, + "attachedElementGuid" : { + "value" : "ca0b1c11-cdf6-46de-ab4e-21011a55c2d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5ff03757-6ebd-4098-9bf0-957228072ea7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "5ff03757-6ebd-4098-9bf0-957228072ea7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "5ff03757-6ebd-4098-9bf0-957228072ea7" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7517f7b8-c1af-4855-b217-2f053d1851d3" + }, + "attachedElementGuid" : { + "value" : "5ff03757-6ebd-4098-9bf0-957228072ea7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -4, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7517f7b8-c1af-4855-b217-2f053d1851d3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7517f7b8-c1af-4855-b217-2f053d1851d3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "7517f7b8-c1af-4855-b217-2f053d1851d3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 2, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "7517f7b8-c1af-4855-b217-2f053d1851d3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 118.588, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e9451813-e26e-49da-9aa9-3d38ebd2554d" + }, + "attachedElementGuid" : { + "value" : "ca0b1c11-cdf6-46de-ab4e-21011a55c2d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e9451813-e26e-49da-9aa9-3d38ebd2554d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "e9451813-e26e-49da-9aa9-3d38ebd2554d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "e9451813-e26e-49da-9aa9-3d38ebd2554d" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "453f6849-c875-41e1-a0cf-4f53cde5bfe8" + }, + "attachedElementGuid" : { + "value" : "e9451813-e26e-49da-9aa9-3d38ebd2554d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 3, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "453f6849-c875-41e1-a0cf-4f53cde5bfe8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "453f6849-c875-41e1-a0cf-4f53cde5bfe8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "453f6849-c875-41e1-a0cf-4f53cde5bfe8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 2, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "453f6849-c875-41e1-a0cf-4f53cde5bfe8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 120, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "90954b6d-5079-4da2-a5e5-62d04febbfc2" + }, + "attachedElementGuid" : { + "value" : "ca0b1c11-cdf6-46de-ab4e-21011a55c2d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "90954b6d-5079-4da2-a5e5-62d04febbfc2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "90954b6d-5079-4da2-a5e5-62d04febbfc2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "90954b6d-5079-4da2-a5e5-62d04febbfc2" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "30fa168e-9cbf-4137-ad8c-0686684dec23" + }, + "attachedElementGuid" : { + "value" : "90954b6d-5079-4da2-a5e5-62d04febbfc2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -7, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "30fa168e-9cbf-4137-ad8c-0686684dec23" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "30fa168e-9cbf-4137-ad8c-0686684dec23" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "30fa168e-9cbf-4137-ad8c-0686684dec23" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 2, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "30fa168e-9cbf-4137-ad8c-0686684dec23" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 121.411, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b8990249-afd8-490e-9987-85b93eb06160" + }, + "attachedElementGuid" : { + "value" : "ca0b1c11-cdf6-46de-ab4e-21011a55c2d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b8990249-afd8-490e-9987-85b93eb06160" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "b8990249-afd8-490e-9987-85b93eb06160" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "b8990249-afd8-490e-9987-85b93eb06160" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0474b3c8-f610-4add-aa31-f3a5468a15cb" + }, + "attachedElementGuid" : { + "value" : "b8990249-afd8-490e-9987-85b93eb06160" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0474b3c8-f610-4add-aa31-f3a5468a15cb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0474b3c8-f610-4add-aa31-f3a5468a15cb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0474b3c8-f610-4add-aa31-f3a5468a15cb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 2, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "0474b3c8-f610-4add-aa31-f3a5468a15cb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 122.823, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d529f9b6-ba07-4b22-9c51-315b6a2cfd54" + }, + "attachedElementGuid" : { + "value" : "ca0b1c11-cdf6-46de-ab4e-21011a55c2d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d529f9b6-ba07-4b22-9c51-315b6a2cfd54" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "d529f9b6-ba07-4b22-9c51-315b6a2cfd54" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "d529f9b6-ba07-4b22-9c51-315b6a2cfd54" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f20b7ce4-88e3-4cea-8929-38f71f10504d" + }, + "attachedElementGuid" : { + "value" : "d529f9b6-ba07-4b22-9c51-315b6a2cfd54" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 10, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f20b7ce4-88e3-4cea-8929-38f71f10504d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f20b7ce4-88e3-4cea-8929-38f71f10504d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f20b7ce4-88e3-4cea-8929-38f71f10504d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 2, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "f20b7ce4-88e3-4cea-8929-38f71f10504d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 124.235, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3738e08d-25dc-4f95-98f8-c4c633e287fa" + }, + "attachedElementGuid" : { + "value" : "ca0b1c11-cdf6-46de-ab4e-21011a55c2d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3738e08d-25dc-4f95-98f8-c4c633e287fa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "3738e08d-25dc-4f95-98f8-c4c633e287fa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "3738e08d-25dc-4f95-98f8-c4c633e287fa" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f49feff2-6a5b-492a-89b7-4a345a75d35a" + }, + "attachedElementGuid" : { + "value" : "3738e08d-25dc-4f95-98f8-c4c633e287fa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f49feff2-6a5b-492a-89b7-4a345a75d35a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f49feff2-6a5b-492a-89b7-4a345a75d35a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f49feff2-6a5b-492a-89b7-4a345a75d35a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 2, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "f49feff2-6a5b-492a-89b7-4a345a75d35a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a4fa5863-16c9-4463-8a0c-6367ff6f7428" + }, + "attachedElementGuid" : { + "value" : "07c36659-ff78-4f02-a3fa-e605a82c6cf9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : -50, + "z" : 1900 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a4fa5863-16c9-4463-8a0c-6367ff6f7428" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a4fa5863-16c9-4463-8a0c-6367ff6f7428" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a4fa5863-16c9-4463-8a0c-6367ff6f7428" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "114.352-125.647", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2b10d61f-0684-4976-8e66-30e25bac3f5f" + }, + "attachedElementGuid" : { + "value" : "4ee7f15e-c6f6-40e5-b9e8-8e4887afe797" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2b10d61f-0684-4976-8e66-30e25bac3f5f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2b10d61f-0684-4976-8e66-30e25bac3f5f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 1, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "2b10d61f-0684-4976-8e66-30e25bac3f5f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 114.352, + "trackEndTime" : 125.647, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "2b10d61f-0684-4976-8e66-30e25bac3f5f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f8ddd40f-bc6e-403b-a007-851ae206d40a" + }, + "attachedElementGuid" : { + "value" : "2b10d61f-0684-4976-8e66-30e25bac3f5f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 12, + "z" : 1880 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f8ddd40f-bc6e-403b-a007-851ae206d40a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f8ddd40f-bc6e-403b-a007-851ae206d40a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f8ddd40f-bc6e-403b-a007-851ae206d40a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ef2416b2-2143-4e66-8756-9ce0821936b8" + }, + "attachedElementGuid" : { + "value" : "2b10d61f-0684-4976-8e66-30e25bac3f5f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 12, + "z" : 2048 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ef2416b2-2143-4e66-8756-9ce0821936b8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ef2416b2-2143-4e66-8756-9ce0821936b8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ef2416b2-2143-4e66-8756-9ce0821936b8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Displacement_BM,Assembly-CSharp", + "positionX" : { + "animatedFloatList" : [ + + ] + }, + "positionY" : { + "animatedFloatList" : [ + + ] + }, + "positionZ" : { + "animatedFloatList" : [ + + ] + }, + "elementName" : "New Displacement", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b3dce613-dffe-410d-a6bd-2e338f2aa01e" + }, + "attachedElementGuid" : { + "value" : "a5b6dd97-da4f-42d5-b0dd-fccbb0478cb3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b3dce613-dffe-410d-a6bd-2e338f2aa01e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "New Track", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8b989afc-e636-45ec-8e7a-146dc6afc295" + }, + "attachedElementGuid" : { + "value" : "000291b0-398f-45c2-b7a4-426be47b91ac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8b989afc-e636-45ec-8e7a-146dc6afc295" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8b989afc-e636-45ec-8e7a-146dc6afc295" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 0, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "8b989afc-e636-45ec-8e7a-146dc6afc295" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 114.352, + "trackEndTime" : 115.764, + "visibleTrackTimeLength" : 1, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "8b989afc-e636-45ec-8e7a-146dc6afc295" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "84c50ea0-00fc-4057-b74b-57e8329afb6c" + }, + "attachedElementGuid" : { + "value" : "8b989afc-e636-45ec-8e7a-146dc6afc295" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 2, + "z" : 1900 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "84c50ea0-00fc-4057-b74b-57e8329afb6c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "84c50ea0-00fc-4057-b74b-57e8329afb6c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "84c50ea0-00fc-4057-b74b-57e8329afb6c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ebff1288-b219-46c8-b161-8070f815f3e0" + }, + "attachedElementGuid" : { + "value" : "8b989afc-e636-45ec-8e7a-146dc6afc295" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 42, + "z" : 1900 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ebff1288-b219-46c8-b161-8070f815f3e0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ebff1288-b219-46c8-b161-8070f815f3e0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ebff1288-b219-46c8-b161-8070f815f3e0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6e14af10-2888-4aae-97af-53709235856c" + }, + "attachedElementGuid" : { + "value" : "8b989afc-e636-45ec-8e7a-146dc6afc295" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6e14af10-2888-4aae-97af-53709235856c" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : false, + "time" : 80.47 + },{ + "value" : false, + "time" : 91.764 + } + ] + }, + "enableProcessTime" : 0, + "headSize" : 0, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ab5c9462-37b2-4e1c-a119-73c586d42243" + }, + "attachedElementGuid" : { + "value" : "6e14af10-2888-4aae-97af-53709235856c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ab5c9462-37b2-4e1c-a119-73c586d42243" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ab5c9462-37b2-4e1c-a119-73c586d42243" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 0 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "ab5c9462-37b2-4e1c-a119-73c586d42243" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 114.352 + },{ + "value" : true, + "time" : 115.764 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d0a56a25-3e50-4939-9841-43aaa770aa96" + }, + "attachedElementGuid" : { + "value" : "ab5c9462-37b2-4e1c-a119-73c586d42243" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 1.5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d0a56a25-3e50-4939-9841-43aaa770aa96" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d0a56a25-3e50-4939-9841-43aaa770aa96" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "d0a56a25-3e50-4939-9841-43aaa770aa96" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 114.352 + },{ + "value" : true, + "time" : 115.764 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f86df911-fb03-45ef-8ecc-b6bb69373d82" + }, + "attachedElementGuid" : { + "value" : "ab5c9462-37b2-4e1c-a119-73c586d42243" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -1.5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f86df911-fb03-45ef-8ecc-b6bb69373d82" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f86df911-fb03-45ef-8ecc-b6bb69373d82" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "f86df911-fb03-45ef-8ecc-b6bb69373d82" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Swirl_BM,Assembly-CSharp", + "eulerAngleX" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 180, + "startTime" : 114.352, + "endTime" : 115.764, + "animationCurveType" : 0 + } + ] + }, + "eulerAngleY" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 720, + "startTime" : 114.352, + "endTime" : 115.764, + "animationCurveType" : 0 + } + ] + }, + "eulerAngleZ" : { + "animatedFloatList" : [ + + ] + }, + "elementName" : "New Swirl", + "tags" : [ + + ], + "elementGuid" : { + "value" : "aa0798de-5fa1-4843-b465-61e42f967040" + }, + "attachedElementGuid" : { + "value" : "ab5c9462-37b2-4e1c-a119-73c586d42243" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "aa0798de-5fa1-4843-b465-61e42f967040" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "New Track", + "tags" : [ + + ], + "elementGuid" : { + "value" : "46cea18d-96ee-4828-b185-b27a5fc2b43a" + }, + "attachedElementGuid" : { + "value" : "000291b0-398f-45c2-b7a4-426be47b91ac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "46cea18d-96ee-4828-b185-b27a5fc2b43a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "46cea18d-96ee-4828-b185-b27a5fc2b43a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 0, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "46cea18d-96ee-4828-b185-b27a5fc2b43a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 115.764, + "trackEndTime" : 117.176, + "visibleTrackTimeLength" : 1, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "46cea18d-96ee-4828-b185-b27a5fc2b43a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "af096df9-e08b-47a9-876c-f3569b237d81" + }, + "attachedElementGuid" : { + "value" : "46cea18d-96ee-4828-b185-b27a5fc2b43a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 10, + "y" : 2, + "z" : 1921 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "af096df9-e08b-47a9-876c-f3569b237d81" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "af096df9-e08b-47a9-876c-f3569b237d81" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "af096df9-e08b-47a9-876c-f3569b237d81" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7b6ef3a3-1956-4eea-aa2e-5c17921ea9de" + }, + "attachedElementGuid" : { + "value" : "46cea18d-96ee-4828-b185-b27a5fc2b43a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 10, + "y" : 42, + "z" : 1921 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7b6ef3a3-1956-4eea-aa2e-5c17921ea9de" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7b6ef3a3-1956-4eea-aa2e-5c17921ea9de" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "7b6ef3a3-1956-4eea-aa2e-5c17921ea9de" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c170feae-6775-4801-baea-f2b16384dde9" + }, + "attachedElementGuid" : { + "value" : "46cea18d-96ee-4828-b185-b27a5fc2b43a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c170feae-6775-4801-baea-f2b16384dde9" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : false, + "time" : 80.47 + },{ + "value" : false, + "time" : 91.764 + } + ] + }, + "enableProcessTime" : 0, + "headSize" : 0, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "01dd97ee-4e1d-4af2-b572-fa31f3bd4668" + }, + "attachedElementGuid" : { + "value" : "c170feae-6775-4801-baea-f2b16384dde9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "01dd97ee-4e1d-4af2-b572-fa31f3bd4668" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "01dd97ee-4e1d-4af2-b572-fa31f3bd4668" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 0 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "01dd97ee-4e1d-4af2-b572-fa31f3bd4668" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 115.764 + },{ + "value" : true, + "time" : 115.764 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ca0a222f-5f13-413d-b1b8-921f042cef70" + }, + "attachedElementGuid" : { + "value" : "01dd97ee-4e1d-4af2-b572-fa31f3bd4668" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 1.5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ca0a222f-5f13-413d-b1b8-921f042cef70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ca0a222f-5f13-413d-b1b8-921f042cef70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "ca0a222f-5f13-413d-b1b8-921f042cef70" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 115.764 + },{ + "value" : true, + "time" : 115.764 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b62614dd-caaa-42ff-815a-b5847c7e1332" + }, + "attachedElementGuid" : { + "value" : "01dd97ee-4e1d-4af2-b572-fa31f3bd4668" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -1.5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b62614dd-caaa-42ff-815a-b5847c7e1332" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b62614dd-caaa-42ff-815a-b5847c7e1332" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "b62614dd-caaa-42ff-815a-b5847c7e1332" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Swirl_BM,Assembly-CSharp", + "eulerAngleX" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 180, + "startTime" : 114.352, + "endTime" : 115.764, + "animationCurveType" : 0 + } + ] + }, + "eulerAngleY" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 720, + "startTime" : 115.764, + "endTime" : 117.176, + "animationCurveType" : 0 + } + ] + }, + "eulerAngleZ" : { + "animatedFloatList" : [ + + ] + }, + "elementName" : "New Swirl", + "tags" : [ + + ], + "elementGuid" : { + "value" : "24547ca3-20cc-4dfa-8740-6d8c638ac4ac" + }, + "attachedElementGuid" : { + "value" : "01dd97ee-4e1d-4af2-b572-fa31f3bd4668" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "24547ca3-20cc-4dfa-8740-6d8c638ac4ac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "New Track", + "tags" : [ + + ], + "elementGuid" : { + "value" : "85ecb6a7-8d23-4312-8bdf-59080f5d561d" + }, + "attachedElementGuid" : { + "value" : "000291b0-398f-45c2-b7a4-426be47b91ac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "85ecb6a7-8d23-4312-8bdf-59080f5d561d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "85ecb6a7-8d23-4312-8bdf-59080f5d561d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 0, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "85ecb6a7-8d23-4312-8bdf-59080f5d561d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 117.176, + "trackEndTime" : 118.588, + "visibleTrackTimeLength" : 1, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "85ecb6a7-8d23-4312-8bdf-59080f5d561d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "897b56a4-a999-4de1-9c18-6e4afbe6affc" + }, + "attachedElementGuid" : { + "value" : "85ecb6a7-8d23-4312-8bdf-59080f5d561d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -4, + "y" : 2, + "z" : 1942 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "897b56a4-a999-4de1-9c18-6e4afbe6affc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "897b56a4-a999-4de1-9c18-6e4afbe6affc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "897b56a4-a999-4de1-9c18-6e4afbe6affc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d3666128-2ffe-48dd-b6c2-ba135473c939" + }, + "attachedElementGuid" : { + "value" : "85ecb6a7-8d23-4312-8bdf-59080f5d561d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -4, + "y" : 42, + "z" : 1942 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d3666128-2ffe-48dd-b6c2-ba135473c939" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d3666128-2ffe-48dd-b6c2-ba135473c939" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d3666128-2ffe-48dd-b6c2-ba135473c939" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2fde8321-0d52-493a-904d-86942ca507b9" + }, + "attachedElementGuid" : { + "value" : "85ecb6a7-8d23-4312-8bdf-59080f5d561d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2fde8321-0d52-493a-904d-86942ca507b9" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : false, + "time" : 80.47 + },{ + "value" : false, + "time" : 91.764 + } + ] + }, + "enableProcessTime" : 0, + "headSize" : 0, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "063c177a-d214-4ff2-81ed-2c2c0d3c6658" + }, + "attachedElementGuid" : { + "value" : "2fde8321-0d52-493a-904d-86942ca507b9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "063c177a-d214-4ff2-81ed-2c2c0d3c6658" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "063c177a-d214-4ff2-81ed-2c2c0d3c6658" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 0 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "063c177a-d214-4ff2-81ed-2c2c0d3c6658" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 117.176 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b64a04b6-a8d2-4d62-a4be-1ebeaa5b59cc" + }, + "attachedElementGuid" : { + "value" : "063c177a-d214-4ff2-81ed-2c2c0d3c6658" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 1.5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b64a04b6-a8d2-4d62-a4be-1ebeaa5b59cc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b64a04b6-a8d2-4d62-a4be-1ebeaa5b59cc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "b64a04b6-a8d2-4d62-a4be-1ebeaa5b59cc" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 117.176 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "043c2e08-630e-421d-97ab-8bea5e2583cc" + }, + "attachedElementGuid" : { + "value" : "063c177a-d214-4ff2-81ed-2c2c0d3c6658" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -1.5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "043c2e08-630e-421d-97ab-8bea5e2583cc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "043c2e08-630e-421d-97ab-8bea5e2583cc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "043c2e08-630e-421d-97ab-8bea5e2583cc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Swirl_BM,Assembly-CSharp", + "eulerAngleX" : { + "animatedFloatList" : [ + + ] + }, + "eulerAngleY" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 720, + "startTime" : 117.176, + "endTime" : 118.588, + "animationCurveType" : 0 + } + ] + }, + "eulerAngleZ" : { + "animatedFloatList" : [ + + ] + }, + "elementName" : "New Swirl", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d74cb866-713e-445d-821c-1a2d2966d37b" + }, + "attachedElementGuid" : { + "value" : "063c177a-d214-4ff2-81ed-2c2c0d3c6658" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d74cb866-713e-445d-821c-1a2d2966d37b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "New Track", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d3d93f64-2681-4342-a714-4c1955e6fba0" + }, + "attachedElementGuid" : { + "value" : "000291b0-398f-45c2-b7a4-426be47b91ac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d3d93f64-2681-4342-a714-4c1955e6fba0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d3d93f64-2681-4342-a714-4c1955e6fba0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 0, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "d3d93f64-2681-4342-a714-4c1955e6fba0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 118.588, + "trackEndTime" : 120, + "visibleTrackTimeLength" : 1, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "d3d93f64-2681-4342-a714-4c1955e6fba0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7d47d614-a9cf-413a-a1ee-39c0a8203734" + }, + "attachedElementGuid" : { + "value" : "d3d93f64-2681-4342-a714-4c1955e6fba0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 3, + "y" : 2, + "z" : 1963 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7d47d614-a9cf-413a-a1ee-39c0a8203734" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7d47d614-a9cf-413a-a1ee-39c0a8203734" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "7d47d614-a9cf-413a-a1ee-39c0a8203734" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8e7c68ca-21af-430b-9640-ef71c09e7d81" + }, + "attachedElementGuid" : { + "value" : "d3d93f64-2681-4342-a714-4c1955e6fba0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 3, + "y" : 42, + "z" : 1963 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8e7c68ca-21af-430b-9640-ef71c09e7d81" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8e7c68ca-21af-430b-9640-ef71c09e7d81" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8e7c68ca-21af-430b-9640-ef71c09e7d81" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ca2a7c41-1aff-4ea6-8633-fa5f102c7b16" + }, + "attachedElementGuid" : { + "value" : "d3d93f64-2681-4342-a714-4c1955e6fba0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ca2a7c41-1aff-4ea6-8633-fa5f102c7b16" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : false, + "time" : 80.47 + },{ + "value" : false, + "time" : 91.764 + } + ] + }, + "enableProcessTime" : 0, + "headSize" : 0, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9313fdf0-1a9b-499d-a102-3f94e107982c" + }, + "attachedElementGuid" : { + "value" : "ca2a7c41-1aff-4ea6-8633-fa5f102c7b16" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9313fdf0-1a9b-499d-a102-3f94e107982c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9313fdf0-1a9b-499d-a102-3f94e107982c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 0 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "9313fdf0-1a9b-499d-a102-3f94e107982c" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 118.588 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fe4c99ce-931b-415a-b3f0-d58067e6c46e" + }, + "attachedElementGuid" : { + "value" : "9313fdf0-1a9b-499d-a102-3f94e107982c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 1.5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "fe4c99ce-931b-415a-b3f0-d58067e6c46e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fe4c99ce-931b-415a-b3f0-d58067e6c46e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "fe4c99ce-931b-415a-b3f0-d58067e6c46e" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 118.588 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c4c94262-637a-4946-957e-db97322be6bf" + }, + "attachedElementGuid" : { + "value" : "9313fdf0-1a9b-499d-a102-3f94e107982c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -1.5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c4c94262-637a-4946-957e-db97322be6bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c4c94262-637a-4946-957e-db97322be6bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "c4c94262-637a-4946-957e-db97322be6bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Swirl_BM,Assembly-CSharp", + "eulerAngleX" : { + "animatedFloatList" : [ + + ] + }, + "eulerAngleY" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 720, + "startTime" : 118.588, + "endTime" : 120, + "animationCurveType" : 0 + } + ] + }, + "eulerAngleZ" : { + "animatedFloatList" : [ + + ] + }, + "elementName" : "New Swirl", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4b10b106-b032-4048-8720-e389224dd712" + }, + "attachedElementGuid" : { + "value" : "9313fdf0-1a9b-499d-a102-3f94e107982c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4b10b106-b032-4048-8720-e389224dd712" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "New Track", + "tags" : [ + + ], + "elementGuid" : { + "value" : "82ebad3d-3d96-430c-b856-2eac5df38fb5" + }, + "attachedElementGuid" : { + "value" : "000291b0-398f-45c2-b7a4-426be47b91ac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "82ebad3d-3d96-430c-b856-2eac5df38fb5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "82ebad3d-3d96-430c-b856-2eac5df38fb5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 0, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "82ebad3d-3d96-430c-b856-2eac5df38fb5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 120, + "trackEndTime" : 121.411, + "visibleTrackTimeLength" : 1, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "82ebad3d-3d96-430c-b856-2eac5df38fb5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "dcee0aaf-4a12-491a-98b2-80e4b1ba09d7" + }, + "attachedElementGuid" : { + "value" : "82ebad3d-3d96-430c-b856-2eac5df38fb5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -7, + "y" : 2, + "z" : 1984 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "dcee0aaf-4a12-491a-98b2-80e4b1ba09d7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "dcee0aaf-4a12-491a-98b2-80e4b1ba09d7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "dcee0aaf-4a12-491a-98b2-80e4b1ba09d7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "015026f6-042a-4808-bd20-45ccfbdc2a8e" + }, + "attachedElementGuid" : { + "value" : "82ebad3d-3d96-430c-b856-2eac5df38fb5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -7, + "y" : 42, + "z" : 1984 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "015026f6-042a-4808-bd20-45ccfbdc2a8e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "015026f6-042a-4808-bd20-45ccfbdc2a8e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "015026f6-042a-4808-bd20-45ccfbdc2a8e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e6d3ee79-6ea7-4b6b-996b-5911cde9f3a6" + }, + "attachedElementGuid" : { + "value" : "82ebad3d-3d96-430c-b856-2eac5df38fb5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e6d3ee79-6ea7-4b6b-996b-5911cde9f3a6" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : false, + "time" : 80.47 + },{ + "value" : false, + "time" : 91.764 + } + ] + }, + "enableProcessTime" : 0, + "headSize" : 0, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b1cf07f5-d0f4-4941-ac15-8a9181089ab4" + }, + "attachedElementGuid" : { + "value" : "e6d3ee79-6ea7-4b6b-996b-5911cde9f3a6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b1cf07f5-d0f4-4941-ac15-8a9181089ab4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b1cf07f5-d0f4-4941-ac15-8a9181089ab4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 0 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "b1cf07f5-d0f4-4941-ac15-8a9181089ab4" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 120 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f61e144c-5c38-4192-9c6f-83d410fb1053" + }, + "attachedElementGuid" : { + "value" : "b1cf07f5-d0f4-4941-ac15-8a9181089ab4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 1.5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f61e144c-5c38-4192-9c6f-83d410fb1053" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f61e144c-5c38-4192-9c6f-83d410fb1053" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "f61e144c-5c38-4192-9c6f-83d410fb1053" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 120 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d5a6eb0c-be8d-43cb-a1a0-de2fca11dded" + }, + "attachedElementGuid" : { + "value" : "b1cf07f5-d0f4-4941-ac15-8a9181089ab4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -1.5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d5a6eb0c-be8d-43cb-a1a0-de2fca11dded" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d5a6eb0c-be8d-43cb-a1a0-de2fca11dded" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "d5a6eb0c-be8d-43cb-a1a0-de2fca11dded" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Swirl_BM,Assembly-CSharp", + "eulerAngleX" : { + "animatedFloatList" : [ + + ] + }, + "eulerAngleY" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 720, + "startTime" : 120, + "endTime" : 121.411, + "animationCurveType" : 0 + } + ] + }, + "eulerAngleZ" : { + "animatedFloatList" : [ + + ] + }, + "elementName" : "New Swirl", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c7bd0f1b-bc8e-4b45-b7d1-ee290064a4d5" + }, + "attachedElementGuid" : { + "value" : "b1cf07f5-d0f4-4941-ac15-8a9181089ab4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c7bd0f1b-bc8e-4b45-b7d1-ee290064a4d5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "New Track", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ce64158c-7802-45b5-bc08-d48efd306210" + }, + "attachedElementGuid" : { + "value" : "000291b0-398f-45c2-b7a4-426be47b91ac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ce64158c-7802-45b5-bc08-d48efd306210" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ce64158c-7802-45b5-bc08-d48efd306210" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 0, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "ce64158c-7802-45b5-bc08-d48efd306210" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 121.411, + "trackEndTime" : 122.823, + "visibleTrackTimeLength" : 1, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "ce64158c-7802-45b5-bc08-d48efd306210" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e206bf9c-5d58-4c15-8b5b-44b95573a088" + }, + "attachedElementGuid" : { + "value" : "ce64158c-7802-45b5-bc08-d48efd306210" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2, + "y" : 2, + "z" : 2005 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e206bf9c-5d58-4c15-8b5b-44b95573a088" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e206bf9c-5d58-4c15-8b5b-44b95573a088" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e206bf9c-5d58-4c15-8b5b-44b95573a088" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f40cef46-c63d-4ae2-9161-68f37d2e1007" + }, + "attachedElementGuid" : { + "value" : "ce64158c-7802-45b5-bc08-d48efd306210" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2, + "y" : 42, + "z" : 2004.8 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f40cef46-c63d-4ae2-9161-68f37d2e1007" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f40cef46-c63d-4ae2-9161-68f37d2e1007" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f40cef46-c63d-4ae2-9161-68f37d2e1007" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4d39f40e-7674-4fda-a432-6e5ce64f2e67" + }, + "attachedElementGuid" : { + "value" : "ce64158c-7802-45b5-bc08-d48efd306210" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4d39f40e-7674-4fda-a432-6e5ce64f2e67" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : false, + "time" : 80.47 + },{ + "value" : false, + "time" : 91.764 + } + ] + }, + "enableProcessTime" : 0, + "headSize" : 0, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a6dd7558-3465-427c-9bb7-e7a538e36204" + }, + "attachedElementGuid" : { + "value" : "4d39f40e-7674-4fda-a432-6e5ce64f2e67" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a6dd7558-3465-427c-9bb7-e7a538e36204" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a6dd7558-3465-427c-9bb7-e7a538e36204" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 0 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "a6dd7558-3465-427c-9bb7-e7a538e36204" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 121.411 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bf9bb222-14df-44a5-90d2-b041abbc645f" + }, + "attachedElementGuid" : { + "value" : "a6dd7558-3465-427c-9bb7-e7a538e36204" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 1.5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "bf9bb222-14df-44a5-90d2-b041abbc645f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bf9bb222-14df-44a5-90d2-b041abbc645f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "bf9bb222-14df-44a5-90d2-b041abbc645f" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 121.411 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0b740ca8-b06b-49b0-81a8-0b77d022df15" + }, + "attachedElementGuid" : { + "value" : "a6dd7558-3465-427c-9bb7-e7a538e36204" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -1.5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0b740ca8-b06b-49b0-81a8-0b77d022df15" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0b740ca8-b06b-49b0-81a8-0b77d022df15" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "0b740ca8-b06b-49b0-81a8-0b77d022df15" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Swirl_BM,Assembly-CSharp", + "eulerAngleX" : { + "animatedFloatList" : [ + + ] + }, + "eulerAngleY" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 720, + "startTime" : 121.411, + "endTime" : 122.823, + "animationCurveType" : 0 + } + ] + }, + "eulerAngleZ" : { + "animatedFloatList" : [ + + ] + }, + "elementName" : "New Swirl", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e80b5890-80d3-4d10-a32e-613c0bacb255" + }, + "attachedElementGuid" : { + "value" : "a6dd7558-3465-427c-9bb7-e7a538e36204" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e80b5890-80d3-4d10-a32e-613c0bacb255" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "New Track", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bc62ac1c-2fd8-4ea0-8b6b-659c2db6ebfc" + }, + "attachedElementGuid" : { + "value" : "000291b0-398f-45c2-b7a4-426be47b91ac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "bc62ac1c-2fd8-4ea0-8b6b-659c2db6ebfc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bc62ac1c-2fd8-4ea0-8b6b-659c2db6ebfc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 0, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "bc62ac1c-2fd8-4ea0-8b6b-659c2db6ebfc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 122.823, + "trackEndTime" : 124.235, + "visibleTrackTimeLength" : 1, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "bc62ac1c-2fd8-4ea0-8b6b-659c2db6ebfc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d3ae1a4b-449f-47a7-952a-412aef1fcc14" + }, + "attachedElementGuid" : { + "value" : "bc62ac1c-2fd8-4ea0-8b6b-659c2db6ebfc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 10, + "y" : 2, + "z" : 2026 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d3ae1a4b-449f-47a7-952a-412aef1fcc14" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d3ae1a4b-449f-47a7-952a-412aef1fcc14" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d3ae1a4b-449f-47a7-952a-412aef1fcc14" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "676cc004-c1df-4893-9402-778e248c99ff" + }, + "attachedElementGuid" : { + "value" : "bc62ac1c-2fd8-4ea0-8b6b-659c2db6ebfc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 10, + "y" : 42, + "z" : 2026 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "676cc004-c1df-4893-9402-778e248c99ff" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "676cc004-c1df-4893-9402-778e248c99ff" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "676cc004-c1df-4893-9402-778e248c99ff" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f3c7942d-3787-4962-9cbb-0b571404eeeb" + }, + "attachedElementGuid" : { + "value" : "bc62ac1c-2fd8-4ea0-8b6b-659c2db6ebfc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f3c7942d-3787-4962-9cbb-0b571404eeeb" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : false, + "time" : 80.47 + },{ + "value" : false, + "time" : 91.764 + } + ] + }, + "enableProcessTime" : 0, + "headSize" : 0, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "abad90ea-7a45-4cfd-a5d5-4b667f1ce061" + }, + "attachedElementGuid" : { + "value" : "f3c7942d-3787-4962-9cbb-0b571404eeeb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "abad90ea-7a45-4cfd-a5d5-4b667f1ce061" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "abad90ea-7a45-4cfd-a5d5-4b667f1ce061" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 0 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "abad90ea-7a45-4cfd-a5d5-4b667f1ce061" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 122.823 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f2a1e689-1f96-49a0-bdae-1bc7343efecc" + }, + "attachedElementGuid" : { + "value" : "abad90ea-7a45-4cfd-a5d5-4b667f1ce061" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 1.5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f2a1e689-1f96-49a0-bdae-1bc7343efecc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f2a1e689-1f96-49a0-bdae-1bc7343efecc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "f2a1e689-1f96-49a0-bdae-1bc7343efecc" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 122.823 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8f9f8698-2c5d-40d8-a893-1ae9986008bc" + }, + "attachedElementGuid" : { + "value" : "abad90ea-7a45-4cfd-a5d5-4b667f1ce061" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -1.5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8f9f8698-2c5d-40d8-a893-1ae9986008bc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8f9f8698-2c5d-40d8-a893-1ae9986008bc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "8f9f8698-2c5d-40d8-a893-1ae9986008bc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Swirl_BM,Assembly-CSharp", + "eulerAngleX" : { + "animatedFloatList" : [ + + ] + }, + "eulerAngleY" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 720, + "startTime" : 122.823, + "endTime" : 124.235, + "animationCurveType" : 0 + } + ] + }, + "eulerAngleZ" : { + "animatedFloatList" : [ + + ] + }, + "elementName" : "New Swirl", + "tags" : [ + + ], + "elementGuid" : { + "value" : "50a07d96-912b-42e4-aff0-03bf649bf72b" + }, + "attachedElementGuid" : { + "value" : "abad90ea-7a45-4cfd-a5d5-4b667f1ce061" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "50a07d96-912b-42e4-aff0-03bf649bf72b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "New Track", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3cf85ec2-32b3-4b79-8667-aa4ffff70501" + }, + "attachedElementGuid" : { + "value" : "000291b0-398f-45c2-b7a4-426be47b91ac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3cf85ec2-32b3-4b79-8667-aa4ffff70501" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3cf85ec2-32b3-4b79-8667-aa4ffff70501" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 0, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "3cf85ec2-32b3-4b79-8667-aa4ffff70501" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 124.235, + "trackEndTime" : 125.647, + "visibleTrackTimeLength" : 1, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "3cf85ec2-32b3-4b79-8667-aa4ffff70501" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c45d66b7-6378-4e19-ba2c-c2429cb5d326" + }, + "attachedElementGuid" : { + "value" : "3cf85ec2-32b3-4b79-8667-aa4ffff70501" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 2, + "z" : 2047 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c45d66b7-6378-4e19-ba2c-c2429cb5d326" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c45d66b7-6378-4e19-ba2c-c2429cb5d326" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c45d66b7-6378-4e19-ba2c-c2429cb5d326" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8d0f107a-b560-4245-9978-979711b4f12c" + }, + "attachedElementGuid" : { + "value" : "3cf85ec2-32b3-4b79-8667-aa4ffff70501" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 42, + "z" : 2047 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8d0f107a-b560-4245-9978-979711b4f12c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8d0f107a-b560-4245-9978-979711b4f12c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8d0f107a-b560-4245-9978-979711b4f12c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "318b987e-fc95-410e-9f8d-fcb0a02ffc99" + }, + "attachedElementGuid" : { + "value" : "3cf85ec2-32b3-4b79-8667-aa4ffff70501" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "318b987e-fc95-410e-9f8d-fcb0a02ffc99" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : false, + "time" : 80.47 + },{ + "value" : false, + "time" : 91.764 + } + ] + }, + "enableProcessTime" : 0, + "headSize" : 0, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a18b8fcc-f174-430f-aa02-2945c35fbfa1" + }, + "attachedElementGuid" : { + "value" : "318b987e-fc95-410e-9f8d-fcb0a02ffc99" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a18b8fcc-f174-430f-aa02-2945c35fbfa1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a18b8fcc-f174-430f-aa02-2945c35fbfa1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 0 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "a18b8fcc-f174-430f-aa02-2945c35fbfa1" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 124.235 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9e0e9707-bd3a-4641-9510-8111713d1db7" + }, + "attachedElementGuid" : { + "value" : "a18b8fcc-f174-430f-aa02-2945c35fbfa1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 1.5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9e0e9707-bd3a-4641-9510-8111713d1db7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9e0e9707-bd3a-4641-9510-8111713d1db7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "9e0e9707-bd3a-4641-9510-8111713d1db7" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 124.235 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d70650f4-1152-4293-bca1-6ea3235f2a29" + }, + "attachedElementGuid" : { + "value" : "a18b8fcc-f174-430f-aa02-2945c35fbfa1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -1.5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d70650f4-1152-4293-bca1-6ea3235f2a29" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d70650f4-1152-4293-bca1-6ea3235f2a29" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "d70650f4-1152-4293-bca1-6ea3235f2a29" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Swirl_BM,Assembly-CSharp", + "eulerAngleX" : { + "animatedFloatList" : [ + + ] + }, + "eulerAngleY" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 720, + "startTime" : 124.235, + "endTime" : 125.647, + "animationCurveType" : 0 + } + ] + }, + "eulerAngleZ" : { + "animatedFloatList" : [ + + ] + }, + "elementName" : "New Swirl", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a1aa952f-9f01-4830-8f4c-92fa326d21ec" + }, + "attachedElementGuid" : { + "value" : "a18b8fcc-f174-430f-aa02-2945c35fbfa1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a1aa952f-9f01-4830-8f4c-92fa326d21ec" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.BaseColorChange_BM,Assembly-CSharp", + "colorR" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorG" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorB" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorA" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + },{ + "startValue" : 1, + "endValue" : 0, + "startTime" : 124.235, + "endTime" : 125.647, + "animationCurveType" : 17 + } + ] + }, + "elementName" : "New Base Color Change", + "tags" : [ + + ], + "elementGuid" : { + "value" : "38b89708-c070-4111-9eee-bc37d60d3bc4" + }, + "attachedElementGuid" : { + "value" : "980fc504-f7a9-41e1-8f33-26c8a35e15d0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "38b89708-c070-4111-9eee-bc37d60d3bc4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c986d94c-a6c3-4e27-9443-f64ca5a753e1" + }, + "attachedElementGuid" : { + "value" : "23b234d5-7313-4132-bb58-3b83bc91bcd6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 30, + "y" : 2, + "z" : 128 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c986d94c-a6c3-4e27-9443-f64ca5a753e1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c986d94c-a6c3-4e27-9443-f64ca5a753e1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c986d94c-a6c3-4e27-9443-f64ca5a753e1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.BaseColorChange_BM,Assembly-CSharp", + "colorR" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorG" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorB" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorA" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 0, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 1, + "startTime" : 21.176, + "endTime" : 21.882, + "animationCurveType" : 0 + },{ + "startValue" : 1, + "endValue" : 0, + "startTime" : 21.882, + "endTime" : 22.235, + "animationCurveType" : 0 + } + ] + }, + "elementName" : "New Base Color Change", + "tags" : [ + + ], + "elementGuid" : { + "value" : "54add545-de06-4dc6-b741-0feda1230e92" + }, + "attachedElementGuid" : { + "value" : "c986d94c-a6c3-4e27-9443-f64ca5a753e1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "54add545-de06-4dc6-b741-0feda1230e92" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a2d63d46-a006-48af-b79e-5bb8af7474d3" + }, + "attachedElementGuid" : { + "value" : "23b234d5-7313-4132-bb58-3b83bc91bcd6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 30, + "y" : 2, + "z" : 108 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a2d63d46-a006-48af-b79e-5bb8af7474d3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a2d63d46-a006-48af-b79e-5bb8af7474d3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a2d63d46-a006-48af-b79e-5bb8af7474d3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.BaseColorChange_BM,Assembly-CSharp", + "colorR" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorG" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorB" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorA" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 0, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 1, + "startTime" : 21.176, + "endTime" : 21.882, + "animationCurveType" : 0 + },{ + "startValue" : 1, + "endValue" : 0, + "startTime" : 21.882, + "endTime" : 22.235, + "animationCurveType" : 0 + } + ] + }, + "elementName" : "New Base Color Change", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3987bf7e-3748-4c01-922d-f910c09f2114" + }, + "attachedElementGuid" : { + "value" : "a2d63d46-a006-48af-b79e-5bb8af7474d3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3987bf7e-3748-4c01-922d-f910c09f2114" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "New Track", + "tags" : [ + + ], + "elementGuid" : { + "value" : "19a5784a-079b-4318-bf8f-effaecb6cd5b" + }, + "attachedElementGuid" : { + "value" : "00d2bd7a-f067-4a23-9dde-ad51c61e0344" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -3.9, + "y" : 0, + "z" : 25.8 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "19a5784a-079b-4318-bf8f-effaecb6cd5b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "19a5784a-079b-4318-bf8f-effaecb6cd5b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 1, + "trackSamplingType" : 0, + "isClosed" : true, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "19a5784a-079b-4318-bf8f-effaecb6cd5b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleStatic_BM,Assembly-CSharp", + "trackTotalTime" : 1, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "19a5784a-079b-4318-bf8f-effaecb6cd5b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackRendererSubmodulePathGenerator_BM,Assembly-CSharp", + "materialThemeBundleName" : "", + "materialName" : "", + "enableEmission" : false, + "emissionIntensity" : 0, + "zWrite" : true, + "uvScale" : { + "x" : 1, + "y" : 1 + }, + "uvOffset" : { + "x" : 0, + "y" : 0 + }, + "attachedElementGuid" : { + "value" : "19a5784a-079b-4318-bf8f-effaecb6cd5b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6c79e997-faac-4810-9024-3b8fa00f9103" + }, + "attachedElementGuid" : { + "value" : "19a5784a-079b-4318-bf8f-effaecb6cd5b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 0.1, + "y" : 0.1, + "z" : 0.1 + }, + "attachedElementGuid" : { + "value" : "6c79e997-faac-4810-9024-3b8fa00f9103" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6c79e997-faac-4810-9024-3b8fa00f9103" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6c79e997-faac-4810-9024-3b8fa00f9103" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.BaseColorChange_BM,Assembly-CSharp", + "colorR" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorG" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorB" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorA" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 0, + "startTime" : 0, + "endTime" : 10, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 1, + "startTime" : 12, + "endTime" : 12.705, + "animationCurveType" : 1 + },{ + "startValue" : 1, + "endValue" : 0, + "startTime" : 12.705, + "endTime" : 13.411, + "animationCurveType" : 2 + } + ] + }, + "elementName" : "New Base Color Change", + "tags" : [ + + ], + "elementGuid" : { + "value" : "da78f626-698d-47d3-b207-5da9c097a931" + }, + "attachedElementGuid" : { + "value" : "6c79e997-faac-4810-9024-3b8fa00f9103" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "da78f626-698d-47d3-b207-5da9c097a931" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ac797433-ef93-45fe-86ac-10ebee4db75f" + }, + "attachedElementGuid" : { + "value" : "19a5784a-079b-4318-bf8f-effaecb6cd5b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 2 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 0.1, + "y" : 0.1, + "z" : 0.1 + }, + "attachedElementGuid" : { + "value" : "ac797433-ef93-45fe-86ac-10ebee4db75f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ac797433-ef93-45fe-86ac-10ebee4db75f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ac797433-ef93-45fe-86ac-10ebee4db75f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "05bf57b1-1f85-4278-a947-a79c92c437f8" + }, + "attachedElementGuid" : { + "value" : "19a5784a-079b-4318-bf8f-effaecb6cd5b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -2, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 0.1, + "y" : 0.1, + "z" : 0.1 + }, + "attachedElementGuid" : { + "value" : "05bf57b1-1f85-4278-a947-a79c92c437f8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "05bf57b1-1f85-4278-a947-a79c92c437f8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "05bf57b1-1f85-4278-a947-a79c92c437f8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "46215193-273b-436a-91b8-44753c38aef8" + }, + "attachedElementGuid" : { + "value" : "19a5784a-079b-4318-bf8f-effaecb6cd5b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : -2 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 0.1, + "y" : 0.1, + "z" : 0.1 + }, + "attachedElementGuid" : { + "value" : "46215193-273b-436a-91b8-44753c38aef8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "46215193-273b-436a-91b8-44753c38aef8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "46215193-273b-436a-91b8-44753c38aef8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Scale_BM,Assembly-CSharp", + "scaleX" : { + "animatedFloatList" : [ + { + "startValue" : 3, + "endValue" : -1, + "startTime" : 12, + "endTime" : 12.705, + "animationCurveType" : 1 + },{ + "startValue" : -1, + "endValue" : 2, + "startTime" : 12.705, + "endTime" : 13.411, + "animationCurveType" : 0 + } + ] + }, + "scaleY" : { + "animatedFloatList" : [ + + ] + }, + "scaleZ" : { + "animatedFloatList" : [ + { + "startValue" : 3, + "endValue" : -1, + "startTime" : 12, + "endTime" : 12.705, + "animationCurveType" : 1 + },{ + "startValue" : -1, + "endValue" : 2, + "startTime" : 12.705, + "endTime" : 13.411, + "animationCurveType" : 0 + } + ] + }, + "elementName" : "New Scale", + "tags" : [ + + ], + "elementGuid" : { + "value" : "423a48a6-fbef-4d8b-bdb2-a80c9b2a03e6" + }, + "attachedElementGuid" : { + "value" : "19a5784a-079b-4318-bf8f-effaecb6cd5b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "423a48a6-fbef-4d8b-bdb2-a80c9b2a03e6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.BaseColorChange_BM,Assembly-CSharp", + "colorR" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorG" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorB" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorA" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 0, + "startTime" : 0, + "endTime" : 10, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 1, + "startTime" : 12, + "endTime" : 12.705, + "animationCurveType" : 1 + },{ + "startValue" : 1, + "endValue" : 0, + "startTime" : 12.705, + "endTime" : 13.411, + "animationCurveType" : 2 + } + ] + }, + "elementName" : "New Base Color Change", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9cc83335-b6a7-420b-a863-b90ae4b0e733" + }, + "attachedElementGuid" : { + "value" : "ac797433-ef93-45fe-86ac-10ebee4db75f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9cc83335-b6a7-420b-a863-b90ae4b0e733" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.BaseColorChange_BM,Assembly-CSharp", + "colorR" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorG" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorB" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorA" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 0, + "startTime" : 0, + "endTime" : 10, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 1, + "startTime" : 12, + "endTime" : 12.705, + "animationCurveType" : 1 + },{ + "startValue" : 1, + "endValue" : 0, + "startTime" : 12.705, + "endTime" : 13.411, + "animationCurveType" : 2 + } + ] + }, + "elementName" : "New Base Color Change", + "tags" : [ + + ], + "elementGuid" : { + "value" : "48eafe23-af0d-4a96-9cea-fe98449a62c0" + }, + "attachedElementGuid" : { + "value" : "05bf57b1-1f85-4278-a947-a79c92c437f8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "48eafe23-af0d-4a96-9cea-fe98449a62c0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.BaseColorChange_BM,Assembly-CSharp", + "colorR" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorG" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorB" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorA" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 0, + "startTime" : 0, + "endTime" : 10, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 1, + "startTime" : 12, + "endTime" : 12.705, + "animationCurveType" : 1 + },{ + "startValue" : 1, + "endValue" : 0, + "startTime" : 12.705, + "endTime" : 13.411, + "animationCurveType" : 2 + } + ] + }, + "elementName" : "New Base Color Change", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3351e995-d130-40a8-9d59-3c6d0a5bd2a1" + }, + "attachedElementGuid" : { + "value" : "46215193-273b-436a-91b8-44753c38aef8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3351e995-d130-40a8-9d59-3c6d0a5bd2a1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "New Track", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8eb1761c-1bc6-4eb0-978e-841a6ea012e8" + }, + "attachedElementGuid" : { + "value" : "00d2bd7a-f067-4a23-9dde-ad51c61e0344" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2, + "y" : 0, + "z" : 42 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8eb1761c-1bc6-4eb0-978e-841a6ea012e8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8eb1761c-1bc6-4eb0-978e-841a6ea012e8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 1, + "trackSamplingType" : 0, + "isClosed" : true, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "8eb1761c-1bc6-4eb0-978e-841a6ea012e8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleStatic_BM,Assembly-CSharp", + "trackTotalTime" : 1, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "8eb1761c-1bc6-4eb0-978e-841a6ea012e8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackRendererSubmodulePathGenerator_BM,Assembly-CSharp", + "materialThemeBundleName" : "", + "materialName" : "", + "enableEmission" : false, + "emissionIntensity" : 0, + "zWrite" : true, + "uvScale" : { + "x" : 1, + "y" : 1 + }, + "uvOffset" : { + "x" : 0, + "y" : 0 + }, + "attachedElementGuid" : { + "value" : "8eb1761c-1bc6-4eb0-978e-841a6ea012e8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ce6a54b6-9b4c-432d-bdec-3e2df6d94cd4" + }, + "attachedElementGuid" : { + "value" : "8eb1761c-1bc6-4eb0-978e-841a6ea012e8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 0.1, + "y" : 0.1, + "z" : 0.1 + }, + "attachedElementGuid" : { + "value" : "ce6a54b6-9b4c-432d-bdec-3e2df6d94cd4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ce6a54b6-9b4c-432d-bdec-3e2df6d94cd4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ce6a54b6-9b4c-432d-bdec-3e2df6d94cd4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.BaseColorChange_BM,Assembly-CSharp", + "colorR" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorG" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorB" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorA" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 0, + "startTime" : 0, + "endTime" : 10, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 1, + "startTime" : 13.411, + "endTime" : 14.117, + "animationCurveType" : 1 + },{ + "startValue" : 1, + "endValue" : 0, + "startTime" : 14.117, + "endTime" : 14.823, + "animationCurveType" : 2 + } + ] + }, + "elementName" : "New Base Color Change", + "tags" : [ + + ], + "elementGuid" : { + "value" : "99997579-d5eb-4483-a190-928ddbc69597" + }, + "attachedElementGuid" : { + "value" : "ce6a54b6-9b4c-432d-bdec-3e2df6d94cd4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "99997579-d5eb-4483-a190-928ddbc69597" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "df363d1e-0d7d-405b-90a6-e60679e52889" + }, + "attachedElementGuid" : { + "value" : "8eb1761c-1bc6-4eb0-978e-841a6ea012e8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 2 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 0.1, + "y" : 0.1, + "z" : 0.1 + }, + "attachedElementGuid" : { + "value" : "df363d1e-0d7d-405b-90a6-e60679e52889" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "df363d1e-0d7d-405b-90a6-e60679e52889" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "df363d1e-0d7d-405b-90a6-e60679e52889" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5cd3f097-991a-492b-ba0e-c9d1b736a03a" + }, + "attachedElementGuid" : { + "value" : "8eb1761c-1bc6-4eb0-978e-841a6ea012e8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -2, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 0.1, + "y" : 0.1, + "z" : 0.1 + }, + "attachedElementGuid" : { + "value" : "5cd3f097-991a-492b-ba0e-c9d1b736a03a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5cd3f097-991a-492b-ba0e-c9d1b736a03a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5cd3f097-991a-492b-ba0e-c9d1b736a03a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5f9f6d90-171f-4432-b153-5c788117cc0b" + }, + "attachedElementGuid" : { + "value" : "8eb1761c-1bc6-4eb0-978e-841a6ea012e8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : -2 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 0.1, + "y" : 0.1, + "z" : 0.1 + }, + "attachedElementGuid" : { + "value" : "5f9f6d90-171f-4432-b153-5c788117cc0b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5f9f6d90-171f-4432-b153-5c788117cc0b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5f9f6d90-171f-4432-b153-5c788117cc0b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Scale_BM,Assembly-CSharp", + "scaleX" : { + "animatedFloatList" : [ + { + "startValue" : 3, + "endValue" : -1, + "startTime" : 13.411, + "endTime" : 14.117, + "animationCurveType" : 1 + },{ + "startValue" : -1, + "endValue" : 2, + "startTime" : 14.117, + "endTime" : 14.823, + "animationCurveType" : 0 + } + ] + }, + "scaleY" : { + "animatedFloatList" : [ + + ] + }, + "scaleZ" : { + "animatedFloatList" : [ + { + "startValue" : 3, + "endValue" : -1, + "startTime" : 13.411, + "endTime" : 14.117, + "animationCurveType" : 1 + },{ + "startValue" : -1, + "endValue" : 2, + "startTime" : 14.117, + "endTime" : 14.823, + "animationCurveType" : 0 + } + ] + }, + "elementName" : "New Scale", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4dc59f11-7739-436a-bb3a-8624a605fb36" + }, + "attachedElementGuid" : { + "value" : "8eb1761c-1bc6-4eb0-978e-841a6ea012e8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4dc59f11-7739-436a-bb3a-8624a605fb36" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.BaseColorChange_BM,Assembly-CSharp", + "colorR" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorG" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorB" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorA" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 0, + "startTime" : 0, + "endTime" : 10, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 1, + "startTime" : 13.411, + "endTime" : 14.117, + "animationCurveType" : 1 + },{ + "startValue" : 1, + "endValue" : 0, + "startTime" : 14.117, + "endTime" : 14.823, + "animationCurveType" : 2 + } + ] + }, + "elementName" : "New Base Color Change", + "tags" : [ + + ], + "elementGuid" : { + "value" : "631c5916-b2a2-42dd-99b5-beb9cfce5a87" + }, + "attachedElementGuid" : { + "value" : "df363d1e-0d7d-405b-90a6-e60679e52889" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "631c5916-b2a2-42dd-99b5-beb9cfce5a87" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.BaseColorChange_BM,Assembly-CSharp", + "colorR" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorG" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorB" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorA" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 0, + "startTime" : 0, + "endTime" : 10, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 1, + "startTime" : 13.411, + "endTime" : 14.117, + "animationCurveType" : 1 + },{ + "startValue" : 1, + "endValue" : 0, + "startTime" : 14.117, + "endTime" : 14.823, + "animationCurveType" : 2 + } + ] + }, + "elementName" : "New Base Color Change", + "tags" : [ + + ], + "elementGuid" : { + "value" : "157121d0-bf55-46e1-ab5f-cec4d3cfc68b" + }, + "attachedElementGuid" : { + "value" : "5cd3f097-991a-492b-ba0e-c9d1b736a03a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "157121d0-bf55-46e1-ab5f-cec4d3cfc68b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.BaseColorChange_BM,Assembly-CSharp", + "colorR" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorG" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorB" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorA" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 0, + "startTime" : 0, + "endTime" : 10, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 1, + "startTime" : 13.411, + "endTime" : 14.117, + "animationCurveType" : 1 + },{ + "startValue" : 1, + "endValue" : 0, + "startTime" : 14.117, + "endTime" : 14.823, + "animationCurveType" : 2 + } + ] + }, + "elementName" : "New Base Color Change", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c6388923-2f21-4cf3-9ac4-823e68b71393" + }, + "attachedElementGuid" : { + "value" : "5f9f6d90-171f-4432-b153-5c788117cc0b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c6388923-2f21-4cf3-9ac4-823e68b71393" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "New Track", + "tags" : [ + + ], + "elementGuid" : { + "value" : "64be6f65-22eb-4ee9-a5b8-cf88fc59fd89" + }, + "attachedElementGuid" : { + "value" : "00d2bd7a-f067-4a23-9dde-ad51c61e0344" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -1.9, + "y" : 0, + "z" : 57.7 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "64be6f65-22eb-4ee9-a5b8-cf88fc59fd89" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "64be6f65-22eb-4ee9-a5b8-cf88fc59fd89" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 1, + "trackSamplingType" : 0, + "isClosed" : true, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "64be6f65-22eb-4ee9-a5b8-cf88fc59fd89" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleStatic_BM,Assembly-CSharp", + "trackTotalTime" : 1, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "64be6f65-22eb-4ee9-a5b8-cf88fc59fd89" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackRendererSubmodulePathGenerator_BM,Assembly-CSharp", + "materialThemeBundleName" : "", + "materialName" : "", + "enableEmission" : false, + "emissionIntensity" : 0, + "zWrite" : true, + "uvScale" : { + "x" : 1, + "y" : 1 + }, + "uvOffset" : { + "x" : 0, + "y" : 0 + }, + "attachedElementGuid" : { + "value" : "64be6f65-22eb-4ee9-a5b8-cf88fc59fd89" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6e0220ce-40b1-4f98-8a71-d1dc31cfb403" + }, + "attachedElementGuid" : { + "value" : "64be6f65-22eb-4ee9-a5b8-cf88fc59fd89" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 0.1, + "y" : 0.1, + "z" : 0.1 + }, + "attachedElementGuid" : { + "value" : "6e0220ce-40b1-4f98-8a71-d1dc31cfb403" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6e0220ce-40b1-4f98-8a71-d1dc31cfb403" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6e0220ce-40b1-4f98-8a71-d1dc31cfb403" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.BaseColorChange_BM,Assembly-CSharp", + "colorR" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorG" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorB" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorA" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 0, + "startTime" : 0, + "endTime" : 10, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 1, + "startTime" : 14.823, + "endTime" : 15.529, + "animationCurveType" : 1 + },{ + "startValue" : 1, + "endValue" : 0, + "startTime" : 15.529, + "endTime" : 16.235, + "animationCurveType" : 2 + } + ] + }, + "elementName" : "New Base Color Change", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6bead8d0-cc46-4ce4-a746-5e62c5d0d563" + }, + "attachedElementGuid" : { + "value" : "6e0220ce-40b1-4f98-8a71-d1dc31cfb403" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6bead8d0-cc46-4ce4-a746-5e62c5d0d563" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bb670106-415b-4bf9-b4a8-795f376da6d7" + }, + "attachedElementGuid" : { + "value" : "64be6f65-22eb-4ee9-a5b8-cf88fc59fd89" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 2 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 0.1, + "y" : 0.1, + "z" : 0.1 + }, + "attachedElementGuid" : { + "value" : "bb670106-415b-4bf9-b4a8-795f376da6d7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bb670106-415b-4bf9-b4a8-795f376da6d7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "bb670106-415b-4bf9-b4a8-795f376da6d7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c0058d1d-d21a-4633-8674-034762a88889" + }, + "attachedElementGuid" : { + "value" : "64be6f65-22eb-4ee9-a5b8-cf88fc59fd89" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -2, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 0.1, + "y" : 0.1, + "z" : 0.1 + }, + "attachedElementGuid" : { + "value" : "c0058d1d-d21a-4633-8674-034762a88889" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c0058d1d-d21a-4633-8674-034762a88889" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c0058d1d-d21a-4633-8674-034762a88889" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bfdbd28c-ba4f-4f45-ad55-ae0bab25c21a" + }, + "attachedElementGuid" : { + "value" : "64be6f65-22eb-4ee9-a5b8-cf88fc59fd89" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : -2 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 0.1, + "y" : 0.1, + "z" : 0.1 + }, + "attachedElementGuid" : { + "value" : "bfdbd28c-ba4f-4f45-ad55-ae0bab25c21a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bfdbd28c-ba4f-4f45-ad55-ae0bab25c21a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "bfdbd28c-ba4f-4f45-ad55-ae0bab25c21a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Scale_BM,Assembly-CSharp", + "scaleX" : { + "animatedFloatList" : [ + { + "startValue" : 3, + "endValue" : -1, + "startTime" : 14.823, + "endTime" : 15.529, + "animationCurveType" : 1 + },{ + "startValue" : -1, + "endValue" : 2, + "startTime" : 15.529, + "endTime" : 16.235, + "animationCurveType" : 0 + } + ] + }, + "scaleY" : { + "animatedFloatList" : [ + + ] + }, + "scaleZ" : { + "animatedFloatList" : [ + { + "startValue" : 3, + "endValue" : -1, + "startTime" : 14.823, + "endTime" : 15.529, + "animationCurveType" : 1 + },{ + "startValue" : -1, + "endValue" : 2, + "startTime" : 15.529, + "endTime" : 16.235, + "animationCurveType" : 0 + } + ] + }, + "elementName" : "New Scale", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a4cc41b7-b331-42d7-aac7-35ffcaf3c723" + }, + "attachedElementGuid" : { + "value" : "64be6f65-22eb-4ee9-a5b8-cf88fc59fd89" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a4cc41b7-b331-42d7-aac7-35ffcaf3c723" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.BaseColorChange_BM,Assembly-CSharp", + "colorR" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorG" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorB" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorA" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 0, + "startTime" : 0, + "endTime" : 10, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 1, + "startTime" : 14.823, + "endTime" : 15.529, + "animationCurveType" : 1 + },{ + "startValue" : 1, + "endValue" : 0, + "startTime" : 15.529, + "endTime" : 16.235, + "animationCurveType" : 2 + } + ] + }, + "elementName" : "New Base Color Change", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f65d240a-71c1-423c-80ee-85665fb57848" + }, + "attachedElementGuid" : { + "value" : "bb670106-415b-4bf9-b4a8-795f376da6d7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f65d240a-71c1-423c-80ee-85665fb57848" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.BaseColorChange_BM,Assembly-CSharp", + "colorR" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorG" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorB" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorA" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 0, + "startTime" : 0, + "endTime" : 10, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 1, + "startTime" : 14.823, + "endTime" : 15.529, + "animationCurveType" : 1 + },{ + "startValue" : 1, + "endValue" : 0, + "startTime" : 15.529, + "endTime" : 16.235, + "animationCurveType" : 2 + } + ] + }, + "elementName" : "New Base Color Change", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e9c433b7-b19a-46f7-8562-de2c2c44311d" + }, + "attachedElementGuid" : { + "value" : "c0058d1d-d21a-4633-8674-034762a88889" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e9c433b7-b19a-46f7-8562-de2c2c44311d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.BaseColorChange_BM,Assembly-CSharp", + "colorR" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorG" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorB" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorA" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 0, + "startTime" : 0, + "endTime" : 10, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 1, + "startTime" : 14.823, + "endTime" : 15.529, + "animationCurveType" : 1 + },{ + "startValue" : 1, + "endValue" : 0, + "startTime" : 15.529, + "endTime" : 16.235, + "animationCurveType" : 2 + } + ] + }, + "elementName" : "New Base Color Change", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e93a8527-b50c-4d18-82eb-061f5e1121e3" + }, + "attachedElementGuid" : { + "value" : "bfdbd28c-ba4f-4f45-ad55-ae0bab25c21a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e93a8527-b50c-4d18-82eb-061f5e1121e3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "New Track", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5d074b5b-4469-4f4f-a82c-8d7d99d1adf8" + }, + "attachedElementGuid" : { + "value" : "00d2bd7a-f067-4a23-9dde-ad51c61e0344" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 4, + "y" : 0, + "z" : 74 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5d074b5b-4469-4f4f-a82c-8d7d99d1adf8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5d074b5b-4469-4f4f-a82c-8d7d99d1adf8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 1, + "trackSamplingType" : 0, + "isClosed" : true, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "5d074b5b-4469-4f4f-a82c-8d7d99d1adf8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleStatic_BM,Assembly-CSharp", + "trackTotalTime" : 1, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "5d074b5b-4469-4f4f-a82c-8d7d99d1adf8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackRendererSubmodulePathGenerator_BM,Assembly-CSharp", + "materialThemeBundleName" : "", + "materialName" : "", + "enableEmission" : false, + "emissionIntensity" : 0, + "zWrite" : true, + "uvScale" : { + "x" : 1, + "y" : 1 + }, + "uvOffset" : { + "x" : 0, + "y" : 0 + }, + "attachedElementGuid" : { + "value" : "5d074b5b-4469-4f4f-a82c-8d7d99d1adf8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5f1822f5-7be6-49ec-b27f-ae53f55f1cb8" + }, + "attachedElementGuid" : { + "value" : "5d074b5b-4469-4f4f-a82c-8d7d99d1adf8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 0.1, + "y" : 0.1, + "z" : 0.1 + }, + "attachedElementGuid" : { + "value" : "5f1822f5-7be6-49ec-b27f-ae53f55f1cb8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5f1822f5-7be6-49ec-b27f-ae53f55f1cb8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5f1822f5-7be6-49ec-b27f-ae53f55f1cb8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.BaseColorChange_BM,Assembly-CSharp", + "colorR" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorG" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorB" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorA" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 0, + "startTime" : 0, + "endTime" : 10, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 1, + "startTime" : 16.235, + "endTime" : 16.941, + "animationCurveType" : 1 + },{ + "startValue" : 1, + "endValue" : 0, + "startTime" : 16.941, + "endTime" : 17.647, + "animationCurveType" : 2 + } + ] + }, + "elementName" : "New Base Color Change", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a8bb732a-6903-4e99-b3c9-1b409735e89e" + }, + "attachedElementGuid" : { + "value" : "5f1822f5-7be6-49ec-b27f-ae53f55f1cb8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a8bb732a-6903-4e99-b3c9-1b409735e89e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d87e0a4f-0016-4406-873b-fd8a9c0d563c" + }, + "attachedElementGuid" : { + "value" : "5d074b5b-4469-4f4f-a82c-8d7d99d1adf8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 2 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 0.1, + "y" : 0.1, + "z" : 0.1 + }, + "attachedElementGuid" : { + "value" : "d87e0a4f-0016-4406-873b-fd8a9c0d563c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d87e0a4f-0016-4406-873b-fd8a9c0d563c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d87e0a4f-0016-4406-873b-fd8a9c0d563c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "01ad9a7b-bd75-44d4-bedf-1e5f3580321f" + }, + "attachedElementGuid" : { + "value" : "5d074b5b-4469-4f4f-a82c-8d7d99d1adf8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -2, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 0.1, + "y" : 0.1, + "z" : 0.1 + }, + "attachedElementGuid" : { + "value" : "01ad9a7b-bd75-44d4-bedf-1e5f3580321f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "01ad9a7b-bd75-44d4-bedf-1e5f3580321f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "01ad9a7b-bd75-44d4-bedf-1e5f3580321f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "50d0d3c0-3cd0-41d3-b46f-c3cc0dcc0c6d" + }, + "attachedElementGuid" : { + "value" : "5d074b5b-4469-4f4f-a82c-8d7d99d1adf8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : -2 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 0.1, + "y" : 0.1, + "z" : 0.1 + }, + "attachedElementGuid" : { + "value" : "50d0d3c0-3cd0-41d3-b46f-c3cc0dcc0c6d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "50d0d3c0-3cd0-41d3-b46f-c3cc0dcc0c6d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "50d0d3c0-3cd0-41d3-b46f-c3cc0dcc0c6d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Scale_BM,Assembly-CSharp", + "scaleX" : { + "animatedFloatList" : [ + { + "startValue" : 3, + "endValue" : -1, + "startTime" : 16.235, + "endTime" : 16.941, + "animationCurveType" : 1 + },{ + "startValue" : -1, + "endValue" : 2, + "startTime" : 16.941, + "endTime" : 17.647, + "animationCurveType" : 0 + } + ] + }, + "scaleY" : { + "animatedFloatList" : [ + + ] + }, + "scaleZ" : { + "animatedFloatList" : [ + { + "startValue" : 3, + "endValue" : -1, + "startTime" : 16.235, + "endTime" : 16.941, + "animationCurveType" : 1 + },{ + "startValue" : -1, + "endValue" : 2, + "startTime" : 16.941, + "endTime" : 17.647, + "animationCurveType" : 0 + } + ] + }, + "elementName" : "New Scale", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ee33426e-6c91-429b-b9c8-d3b1654373f9" + }, + "attachedElementGuid" : { + "value" : "5d074b5b-4469-4f4f-a82c-8d7d99d1adf8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ee33426e-6c91-429b-b9c8-d3b1654373f9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.BaseColorChange_BM,Assembly-CSharp", + "colorR" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorG" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorB" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorA" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 0, + "startTime" : 0, + "endTime" : 10, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 1, + "startTime" : 16.235, + "endTime" : 16.941, + "animationCurveType" : 1 + },{ + "startValue" : 1, + "endValue" : 0, + "startTime" : 16.941, + "endTime" : 17.647, + "animationCurveType" : 2 + } + ] + }, + "elementName" : "New Base Color Change", + "tags" : [ + + ], + "elementGuid" : { + "value" : "39a03d6f-42e1-41f1-8dd1-f53b3399f91a" + }, + "attachedElementGuid" : { + "value" : "d87e0a4f-0016-4406-873b-fd8a9c0d563c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "39a03d6f-42e1-41f1-8dd1-f53b3399f91a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.BaseColorChange_BM,Assembly-CSharp", + "colorR" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorG" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorB" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorA" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 0, + "startTime" : 0, + "endTime" : 10, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 1, + "startTime" : 16.235, + "endTime" : 16.941, + "animationCurveType" : 1 + },{ + "startValue" : 1, + "endValue" : 0, + "startTime" : 16.941, + "endTime" : 17.647, + "animationCurveType" : 2 + } + ] + }, + "elementName" : "New Base Color Change", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d7d8b7f0-d887-4bc4-a2c4-fa75ebf35a10" + }, + "attachedElementGuid" : { + "value" : "01ad9a7b-bd75-44d4-bedf-1e5f3580321f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d7d8b7f0-d887-4bc4-a2c4-fa75ebf35a10" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.BaseColorChange_BM,Assembly-CSharp", + "colorR" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorG" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorB" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorA" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 0, + "startTime" : 0, + "endTime" : 10, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 1, + "startTime" : 16.235, + "endTime" : 16.941, + "animationCurveType" : 1 + },{ + "startValue" : 1, + "endValue" : 0, + "startTime" : 16.941, + "endTime" : 17.647, + "animationCurveType" : 2 + } + ] + }, + "elementName" : "New Base Color Change", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d3a406f2-0be4-440f-b686-2ee5696b885f" + }, + "attachedElementGuid" : { + "value" : "50d0d3c0-3cd0-41d3-b46f-c3cc0dcc0c6d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d3a406f2-0be4-440f-b686-2ee5696b885f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "New Track", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b3efdc68-6c41-4c65-8181-f372997cca7d" + }, + "attachedElementGuid" : { + "value" : "00d2bd7a-f067-4a23-9dde-ad51c61e0344" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -3.5, + "y" : 0, + "z" : 88 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b3efdc68-6c41-4c65-8181-f372997cca7d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b3efdc68-6c41-4c65-8181-f372997cca7d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 1, + "trackSamplingType" : 0, + "isClosed" : true, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "b3efdc68-6c41-4c65-8181-f372997cca7d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleStatic_BM,Assembly-CSharp", + "trackTotalTime" : 1, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "b3efdc68-6c41-4c65-8181-f372997cca7d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackRendererSubmodulePathGenerator_BM,Assembly-CSharp", + "materialThemeBundleName" : "", + "materialName" : "", + "enableEmission" : false, + "emissionIntensity" : 0, + "zWrite" : true, + "uvScale" : { + "x" : 1, + "y" : 1 + }, + "uvOffset" : { + "x" : 0, + "y" : 0 + }, + "attachedElementGuid" : { + "value" : "b3efdc68-6c41-4c65-8181-f372997cca7d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f64e2382-87b0-48ce-be96-fdd01c41acb9" + }, + "attachedElementGuid" : { + "value" : "b3efdc68-6c41-4c65-8181-f372997cca7d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 0.1, + "y" : 0.1, + "z" : 0.1 + }, + "attachedElementGuid" : { + "value" : "f64e2382-87b0-48ce-be96-fdd01c41acb9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f64e2382-87b0-48ce-be96-fdd01c41acb9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f64e2382-87b0-48ce-be96-fdd01c41acb9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.BaseColorChange_BM,Assembly-CSharp", + "colorR" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorG" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorB" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorA" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 0, + "startTime" : 0, + "endTime" : 10, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 1, + "startTime" : 17.647, + "endTime" : 18.352, + "animationCurveType" : 1 + },{ + "startValue" : 1, + "endValue" : 0, + "startTime" : 18.352, + "endTime" : 19.058, + "animationCurveType" : 2 + } + ] + }, + "elementName" : "New Base Color Change", + "tags" : [ + + ], + "elementGuid" : { + "value" : "17b8f19e-44b3-46f7-b62d-74a8a7ac64d0" + }, + "attachedElementGuid" : { + "value" : "f64e2382-87b0-48ce-be96-fdd01c41acb9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "17b8f19e-44b3-46f7-b62d-74a8a7ac64d0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0e77e54e-a4f1-4928-8400-68a1a7a7146e" + }, + "attachedElementGuid" : { + "value" : "b3efdc68-6c41-4c65-8181-f372997cca7d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 2 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 0.1, + "y" : 0.1, + "z" : 0.1 + }, + "attachedElementGuid" : { + "value" : "0e77e54e-a4f1-4928-8400-68a1a7a7146e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0e77e54e-a4f1-4928-8400-68a1a7a7146e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0e77e54e-a4f1-4928-8400-68a1a7a7146e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "515e9138-03e1-48b8-b81f-dcaf6fa546c1" + }, + "attachedElementGuid" : { + "value" : "b3efdc68-6c41-4c65-8181-f372997cca7d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -2, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 0.1, + "y" : 0.1, + "z" : 0.1 + }, + "attachedElementGuid" : { + "value" : "515e9138-03e1-48b8-b81f-dcaf6fa546c1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "515e9138-03e1-48b8-b81f-dcaf6fa546c1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "515e9138-03e1-48b8-b81f-dcaf6fa546c1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6d7bde03-bd5c-49e4-8028-1fefc453bda4" + }, + "attachedElementGuid" : { + "value" : "b3efdc68-6c41-4c65-8181-f372997cca7d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : -2 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 0.1, + "y" : 0.1, + "z" : 0.1 + }, + "attachedElementGuid" : { + "value" : "6d7bde03-bd5c-49e4-8028-1fefc453bda4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6d7bde03-bd5c-49e4-8028-1fefc453bda4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6d7bde03-bd5c-49e4-8028-1fefc453bda4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Scale_BM,Assembly-CSharp", + "scaleX" : { + "animatedFloatList" : [ + { + "startValue" : 3, + "endValue" : -1, + "startTime" : 17.647, + "endTime" : 18.352, + "animationCurveType" : 1 + },{ + "startValue" : -1, + "endValue" : 2, + "startTime" : 18.352, + "endTime" : 19.058, + "animationCurveType" : 0 + } + ] + }, + "scaleY" : { + "animatedFloatList" : [ + + ] + }, + "scaleZ" : { + "animatedFloatList" : [ + { + "startValue" : 3, + "endValue" : -1, + "startTime" : 17.647, + "endTime" : 18.352, + "animationCurveType" : 1 + },{ + "startValue" : -1, + "endValue" : 2, + "startTime" : 18.352, + "endTime" : 19.058, + "animationCurveType" : 0 + } + ] + }, + "elementName" : "New Scale", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a67e58cf-93ae-4a28-bb77-6a17a9f0763c" + }, + "attachedElementGuid" : { + "value" : "b3efdc68-6c41-4c65-8181-f372997cca7d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a67e58cf-93ae-4a28-bb77-6a17a9f0763c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.BaseColorChange_BM,Assembly-CSharp", + "colorR" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorG" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorB" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorA" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 0, + "startTime" : 0, + "endTime" : 10, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 1, + "startTime" : 17.647, + "endTime" : 18.352, + "animationCurveType" : 1 + },{ + "startValue" : 1, + "endValue" : 0, + "startTime" : 18.352, + "endTime" : 19.058, + "animationCurveType" : 2 + } + ] + }, + "elementName" : "New Base Color Change", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2520f85d-a679-4825-8026-0bc54a3d79f8" + }, + "attachedElementGuid" : { + "value" : "0e77e54e-a4f1-4928-8400-68a1a7a7146e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2520f85d-a679-4825-8026-0bc54a3d79f8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.BaseColorChange_BM,Assembly-CSharp", + "colorR" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorG" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorB" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorA" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 0, + "startTime" : 0, + "endTime" : 10, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 1, + "startTime" : 17.647, + "endTime" : 18.352, + "animationCurveType" : 1 + },{ + "startValue" : 1, + "endValue" : 0, + "startTime" : 18.352, + "endTime" : 19.058, + "animationCurveType" : 2 + } + ] + }, + "elementName" : "New Base Color Change", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9831587c-6d5e-408d-8eac-ab1a915fffc8" + }, + "attachedElementGuid" : { + "value" : "515e9138-03e1-48b8-b81f-dcaf6fa546c1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9831587c-6d5e-408d-8eac-ab1a915fffc8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.BaseColorChange_BM,Assembly-CSharp", + "colorR" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorG" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorB" : { + "animatedFloatList" : [ + { + "startValue" : 1, + "endValue" : 1, + "startTime" : 0, + "endTime" : 1, + "animationCurveType" : 0 + } + ] + }, + "colorA" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 0, + "startTime" : 0, + "endTime" : 10, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 1, + "startTime" : 17.647, + "endTime" : 18.352, + "animationCurveType" : 1 + },{ + "startValue" : 1, + "endValue" : 0, + "startTime" : 18.352, + "endTime" : 19.058, + "animationCurveType" : 2 + } + ] + }, + "elementName" : "New Base Color Change", + "tags" : [ + + ], + "elementGuid" : { + "value" : "eefe4837-891e-4e37-9165-9b0c880947a3" + }, + "attachedElementGuid" : { + "value" : "6d7bde03-bd5c-49e4-8028-1fefc453bda4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "eefe4837-891e-4e37-9165-9b0c880947a3" + } + } + ], + "attachedElementGuid" : { + "value" : "00000000-0000-0000-0000-000000000000" + } + } + } +} \ No newline at end of file diff --git a/Assets/StreamingAssets/Projects/Space Rain/Space Rain.pkf.meta b/Assets/StreamingAssets/AutoSave/LWS2/AutoSave_0.json.meta similarity index 74% rename from Assets/StreamingAssets/Projects/Space Rain/Space Rain.pkf.meta rename to Assets/StreamingAssets/AutoSave/LWS2/AutoSave_0.json.meta index 4138c85f..52fbd6e7 100644 --- a/Assets/StreamingAssets/Projects/Space Rain/Space Rain.pkf.meta +++ b/Assets/StreamingAssets/AutoSave/LWS2/AutoSave_0.json.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: c1ffb98d8628c58409b40ff695a58f0f +guid: 06b59e3e279fe5d41bba601c3d5772e8 DefaultImporter: externalObjects: {} userData: diff --git a/Assets/StreamingAssets/AutoSave/Space Rain/AutoSave_0.json b/Assets/StreamingAssets/AutoSave/Space Rain/AutoSave_0.json index 62b2d98e..d4c4f06e 100644 --- a/Assets/StreamingAssets/AutoSave/Space Rain/AutoSave_0.json +++ b/Assets/StreamingAssets/AutoSave/Space Rain/AutoSave_0.json @@ -46,7 +46,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.CrossTrackPoint_BM,Assembly-CSharp", "trackSwitch" : { - "value" : 0, + "value" : 2, "animations" : [ { "value" : 0, @@ -60,12 +60,27 @@ },{ "value" : 3, "time" : 32.01 + },{ + "value" : 4, + "time" : 47.85 + },{ + "value" : 5, + "time" : 79.53 + },{ + "value" : 6, + "time" : 98.34 + },{ + "value" : 7, + "time" : 131.01 + },{ + "value" : 8, + "time" : 146.85 } ] }, "trackPercent" : { - "value" : 0.6823007, - "currentAnimationIndex" : 0, + "value" : 0.7398404, + "currentAnimationIndex" : 2, "animations" : [ { "startValue" : 0, @@ -91,6 +106,36 @@ "startTime" : 32.01, "endTime" : 47.85, "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 1, + "startTime" : 47.85, + "endTime" : 79.53, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 1, + "startTime" : 79.53, + "endTime" : 98.34, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 1, + "startTime" : 98.34, + "endTime" : 131.01, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 1, + "startTime" : 131.01, + "endTime" : 146.85, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 1, + "startTime" : 146.85, + "endTime" : 150.81, + "animationCurveType" : 0 } ], "isSwitchingReturnType" : false, @@ -262,7 +307,7 @@ "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", "trackStartTime" : 15.18, "trackEndTime" : 16.17, - "visibleTrackTimeLength" : 1, + "visibleTrackTimeLength" : 0, "animationCurveType" : 1, "attachedElementGuid" : { "value" : "cb723c93-4273-4209-808a-804b5d2a94f1" @@ -549,7 +594,7 @@ } },{ "__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp", - "elementName" : "Rain(0,0,15)", + "elementName" : "Rain(0,-15,60)", "tags" : [ ], @@ -563,8 +608,8 @@ "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", "originalPosition" : { "x" : 0, - "y" : 0, - "z" : 20 + "y" : -15, + "z" : 60 }, "originalEulerAngles" : { "x" : 0, @@ -635,7 +680,7 @@ "startValue" : 20, "endValue" : 20, "startTime" : 0, - "endTime" : 60, + "endTime" : 32.01, "animationCurveType" : 0 } ] @@ -647,10 +692,34 @@ }, "eulerAngleZ" : { "animatedFloatList" : [ - + { + "startValue" : 0, + "endValue" : 0, + "startTime" : 0, + "endTime" : 16.17, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : 5, + "startTime" : 16.17, + "endTime" : 20.13, + "animationCurveType" : 3 + },{ + "startValue" : 5, + "endValue" : -5, + "startTime" : 20.13, + "endTime" : 28.05, + "animationCurveType" : 3 + },{ + "startValue" : -5, + "endValue" : 0, + "startTime" : 28.05, + "endTime" : 32.01, + "animationCurveType" : 3 + } ] }, - "elementName" : "New Swirl", + "elementName" : "0-32.01", "tags" : [ ], @@ -721,7 +790,7 @@ "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", "trackStartTime" : 16.17, "trackEndTime" : 32.01, - "visibleTrackTimeLength" : 1, + "visibleTrackTimeLength" : 0, "animationCurveType" : 0, "attachedElementGuid" : { "value" : "8eeeabc8-0946-459b-8406-820a238e9484" @@ -849,12 +918,12 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.TimeEffectsCollection_BM,Assembly-CSharp", "time" : 0, - "elementName" : "New Time Effects Collection", + "elementName" : "Black", "tags" : [ ], "elementGuid" : { - "value" : "3e914dcd-9dc4-4b7c-b3b3-3ad93758eb71" + "value" : "30ac95b8-792c-4416-bd16-f779436bdcc3" }, "attachedElementGuid" : { "value" : "b7afbd44-f58e-454e-b666-9331f262aa77" @@ -877,7 +946,7 @@ "z" : 1 }, "attachedElementGuid" : { - "value" : "3e914dcd-9dc4-4b7c-b3b3-3ad93758eb71" + "value" : "30ac95b8-792c-4416-bd16-f779436bdcc3" } },{ "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", @@ -929,7 +998,7 @@ ] }, "attachedElementGuid" : { - "value" : "3e914dcd-9dc4-4b7c-b3b3-3ad93758eb71" + "value" : "30ac95b8-792c-4416-bd16-f779436bdcc3" } },{ "__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp", @@ -1076,7 +1145,7 @@ } ] }, - "enableProcessTime" : 0.5, + "enableProcessTime" : 0, "headSize" : 1, "headRotateSpeed" : { "animatedFloatList" : [ @@ -2334,7 +2403,7 @@ } ] }, - "enableProcessTime" : 0.5, + "enableProcessTime" : 0, "headSize" : 1, "headRotateSpeed" : { "animatedFloatList" : [ @@ -3592,7 +3661,7 @@ } ] }, - "enableProcessTime" : 0.5, + "enableProcessTime" : 0, "headSize" : 1, "headRotateSpeed" : { "animatedFloatList" : [ @@ -4850,7 +4919,7 @@ } ] }, - "enableProcessTime" : 0.5, + "enableProcessTime" : 0, "headSize" : 1, "headRotateSpeed" : { "animatedFloatList" : [ @@ -6094,8 +6163,8 @@ } },{ "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", - "trackStartTime" : 14.19, - "trackEndTime" : 31.02, + "trackStartTime" : 13.68, + "trackEndTime" : 30.51, "visibleTrackTimeLength" : 2, "animationCurveType" : 0, "attachedElementGuid" : { @@ -7352,8 +7421,8 @@ } },{ "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", - "trackStartTime" : 14.19, - "trackEndTime" : 31.02, + "trackStartTime" : 13.68, + "trackEndTime" : 30.51, "visibleTrackTimeLength" : 2, "animationCurveType" : 0, "attachedElementGuid" : { @@ -8610,8 +8679,8 @@ } },{ "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", - "trackStartTime" : 14.19, - "trackEndTime" : 31.02, + "trackStartTime" : 13.68, + "trackEndTime" : 30.51, "visibleTrackTimeLength" : 2, "animationCurveType" : 0, "attachedElementGuid" : { @@ -9868,8 +9937,8 @@ } },{ "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", - "trackStartTime" : 14.19, - "trackEndTime" : 31.02, + "trackStartTime" : 13.68, + "trackEndTime" : 30.51, "visibleTrackTimeLength" : 2, "animationCurveType" : 0, "attachedElementGuid" : { @@ -11132,7 +11201,7 @@ } },{ "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", - "isHighlighted" : false, + "isHighlighted" : true, "themeBundleName" : "departure_to_multiverse", "objectName" : "DTM_NoteVisualStay", "elementName" : "New Note Visual", @@ -11310,7 +11379,7 @@ } },{ "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", - "isHighlighted" : false, + "isHighlighted" : true, "themeBundleName" : "departure_to_multiverse", "objectName" : "DTM_NoteVisualStay", "elementName" : "New Note Visual", @@ -11408,7 +11477,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 16.5000172, - "elementName" : "New Tap", + "elementName" : "Tap (16.50002)", "tags" : [ ], @@ -11566,7 +11635,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 16.6650181, - "elementName" : "New Tap", + "elementName" : "Tap (16.66502)", "tags" : [ ], @@ -11724,7 +11793,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 16.8300171, - "elementName" : "New Tap", + "elementName" : "Tap (16.83002)", "tags" : [ ], @@ -11882,7 +11951,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 17.160017, - "elementName" : "New Tap", + "elementName" : "Tap (17.16002)", "tags" : [ ], @@ -11936,7 +12005,7 @@ } },{ "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", - "isHighlighted" : false, + "isHighlighted" : true, "themeBundleName" : "departure_to_multiverse", "objectName" : "DTM_NoteVisualTap", "elementName" : "New Note Visual", @@ -12040,7 +12109,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 17.160017, - "elementName" : "New Tap", + "elementName" : "Tap (17.16002)", "tags" : [ ], @@ -12094,7 +12163,7 @@ } },{ "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", - "isHighlighted" : false, + "isHighlighted" : true, "themeBundleName" : "departure_to_multiverse", "objectName" : "DTM_NoteVisualTap", "elementName" : "New Note Visual", @@ -12198,7 +12267,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 17.4900188, - "elementName" : "New Tap", + "elementName" : "Tap (17.49002)", "tags" : [ ], @@ -12356,7 +12425,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 17.6550179, - "elementName" : "New Tap", + "elementName" : "Tap (17.65502)", "tags" : [ ], @@ -12514,7 +12583,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 17.8199978, - "elementName" : "New Tap", + "elementName" : "Tap (17.82)", "tags" : [ ], @@ -12672,7 +12741,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 17.9299984, - "elementName" : "New Tap", + "elementName" : "Tap (17.93)", "tags" : [ ], @@ -12830,7 +12899,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 18.0399971, - "elementName" : "New Tap", + "elementName" : "Tap (18.04)", "tags" : [ ], @@ -12988,7 +13057,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 18.1499977, - "elementName" : "New Tap", + "elementName" : "Tap (18.15)", "tags" : [ ], @@ -13172,7 +13241,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 18.4800186, - "elementName" : "New Tap", + "elementName" : "Tap (18.48002)", "tags" : [ ], @@ -13330,7 +13399,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 18.64502, - "elementName" : "New Tap", + "elementName" : "Tap (18.64502)", "tags" : [ ], @@ -13488,7 +13557,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 18.8100185, - "elementName" : "New Tap", + "elementName" : "Tap (18.81002)", "tags" : [ ], @@ -13646,7 +13715,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 19.14002, - "elementName" : "New Tap", + "elementName" : "Tap (19.14002)", "tags" : [ ], @@ -13700,7 +13769,7 @@ } },{ "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", - "isHighlighted" : false, + "isHighlighted" : true, "themeBundleName" : "departure_to_multiverse", "objectName" : "DTM_NoteVisualTap", "elementName" : "New Note Visual", @@ -13804,7 +13873,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 19.14002, - "elementName" : "New Tap", + "elementName" : "Tap (19.14002)", "tags" : [ ], @@ -13858,7 +13927,7 @@ } },{ "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", - "isHighlighted" : false, + "isHighlighted" : true, "themeBundleName" : "departure_to_multiverse", "objectName" : "DTM_NoteVisualTap", "elementName" : "New Note Visual", @@ -13962,7 +14031,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 19.47002, - "elementName" : "New Tap", + "elementName" : "Tap (19.47002)", "tags" : [ ], @@ -14120,7 +14189,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 19.6350212, - "elementName" : "New Tap", + "elementName" : "Tap (19.63502)", "tags" : [ ], @@ -14278,7 +14347,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 19.80002, - "elementName" : "New Tap", + "elementName" : "Tap (19.80002)", "tags" : [ ], @@ -14436,7 +14505,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 19.9650211, - "elementName" : "New Tap", + "elementName" : "Tap (19.96502)", "tags" : [ ], @@ -14594,7 +14663,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", "exactJudgeTime" : 20.0200768, - "elementName" : "New Stay", + "elementName" : "Stay (20.02008)", "tags" : [ ], @@ -14746,7 +14815,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", "exactJudgeTime" : 20.0750771, - "elementName" : "New Stay", + "elementName" : "Stay (20.07508)", "tags" : [ ], @@ -14898,7 +14967,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", "exactJudgeTime" : 20.1300774, - "elementName" : "New Stay", + "elementName" : "Stay (20.13008)", "tags" : [ ], @@ -15050,7 +15119,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 20.13002, - "elementName" : "New Tap", + "elementName" : "Tap (20.13002)", "tags" : [ ], @@ -15234,7 +15303,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 20.460022, - "elementName" : "New Tap", + "elementName" : "Tap (20.46002)", "tags" : [ ], @@ -15392,7 +15461,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 20.625021, - "elementName" : "New Tap", + "elementName" : "Tap (20.62502)", "tags" : [ ], @@ -15550,7 +15619,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 20.7900219, - "elementName" : "New Tap", + "elementName" : "Tap (20.79002)", "tags" : [ ], @@ -15708,7 +15777,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 20.95502, - "elementName" : "New Tap", + "elementName" : "Tap (20.95502)", "tags" : [ ], @@ -15866,7 +15935,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 21.1200218, - "elementName" : "New Tap", + "elementName" : "Tap (21.12002)", "tags" : [ ], @@ -16024,7 +16093,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 21.2850227, - "elementName" : "New Tap", + "elementName" : "Tap (21.28502)", "tags" : [ ], @@ -16182,7 +16251,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", "exactJudgeTime" : 21.3400822, - "elementName" : "New Stay", + "elementName" : "Stay (21.34008)", "tags" : [ ], @@ -16334,7 +16403,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", "exactJudgeTime" : 21.39508, - "elementName" : "New Stay", + "elementName" : "Stay (21.39508)", "tags" : [ ], @@ -16485,8 +16554,8 @@ } },{ "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", - "exactJudgeTime" : 21.45008, - "elementName" : "New Stay", + "exactJudgeTime" : 21.45, + "elementName" : "Stay (21.45008)", "tags" : [ ], @@ -16540,7 +16609,7 @@ } },{ "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", - "isHighlighted" : false, + "isHighlighted" : true, "themeBundleName" : "departure_to_multiverse", "objectName" : "DTM_NoteVisualStay", "elementName" : "New Note Visual", @@ -16638,7 +16707,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 21.779995, - "elementName" : "New Tap", + "elementName" : "Tap (21.77999)", "tags" : [ ], @@ -16796,7 +16865,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 21.8899956, - "elementName" : "New Tap", + "elementName" : "Tap (21.89)", "tags" : [ ], @@ -16954,7 +17023,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 21.9999962, - "elementName" : "New Tap", + "elementName" : "Tap (22)", "tags" : [ ], @@ -17111,8 +17180,8 @@ } },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", - "exactJudgeTime" : 21.4499912, - "elementName" : "New Tap", + "exactJudgeTime" : 21.45, + "elementName" : "Tap (21.44999)", "tags" : [ ], @@ -17166,7 +17235,7 @@ } },{ "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", - "isHighlighted" : false, + "isHighlighted" : true, "themeBundleName" : "departure_to_multiverse", "objectName" : "DTM_NoteVisualTap", "elementName" : "New Note Visual", @@ -17270,7 +17339,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 21.5599937, - "elementName" : "New Tap", + "elementName" : "Tap (21.55999)", "tags" : [ ], @@ -17428,7 +17497,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 21.6699944, - "elementName" : "New Tap", + "elementName" : "Tap (21.66999)", "tags" : [ ], @@ -17586,7 +17655,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 22.1099968, - "elementName" : "New Tap", + "elementName" : "Tap (22.11)", "tags" : [ ], @@ -17770,7 +17839,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 22.4400234, - "elementName" : "New Tap", + "elementName" : "Tap (22.44002)", "tags" : [ ], @@ -17928,7 +17997,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 22.6050224, - "elementName" : "New Tap", + "elementName" : "Tap (22.60502)", "tags" : [ ], @@ -18086,7 +18155,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 22.7700233, - "elementName" : "New Tap", + "elementName" : "Tap (22.77002)", "tags" : [ ], @@ -18244,7 +18313,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 22.9350243, - "elementName" : "New Tap", + "elementName" : "Tap (22.93502)", "tags" : [ ], @@ -18402,7 +18471,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 23.1000233, - "elementName" : "New Tap", + "elementName" : "Tap (23.10002)", "tags" : [ ], @@ -18560,7 +18629,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 23.4300251, - "elementName" : "New Tap", + "elementName" : "Tap (23.43003)", "tags" : [ ], @@ -18718,7 +18787,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", "exactJudgeTime" : 23.48505, - "elementName" : "New Stay", + "elementName" : "Stay (23.48505)", "tags" : [ ], @@ -18870,7 +18939,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", "exactJudgeTime" : 23.54005, - "elementName" : "New Stay", + "elementName" : "Stay (23.54005)", "tags" : [ ], @@ -19022,7 +19091,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", "exactJudgeTime" : 23.5950489, - "elementName" : "New Stay", + "elementName" : "Stay (23.59505)", "tags" : [ ], @@ -19174,7 +19243,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 23.7600479, - "elementName" : "New Tap", + "elementName" : "Tap (23.76005)", "tags" : [ ], @@ -19332,7 +19401,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", "exactJudgeTime" : 23.925045, - "elementName" : "New Stay", + "elementName" : "Stay (23.92505)", "tags" : [ ], @@ -19484,7 +19553,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", "exactJudgeTime" : 23.9800434, - "elementName" : "New Stay", + "elementName" : "Stay (23.98004)", "tags" : [ ], @@ -19636,7 +19705,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", "exactJudgeTime" : 24.0350437, - "elementName" : "New Stay", + "elementName" : "Stay (24.03504)", "tags" : [ ], @@ -19787,8 +19856,8 @@ } },{ "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", - "exactJudgeTime" : 24.0900421, - "elementName" : "New Stay", + "exactJudgeTime" : 24.09, + "elementName" : "Stay (24.09004)", "tags" : [ ], @@ -19842,7 +19911,7 @@ } },{ "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", - "isHighlighted" : false, + "isHighlighted" : true, "themeBundleName" : "departure_to_multiverse", "objectName" : "DTM_NoteVisualStay", "elementName" : "New Note Visual", @@ -19939,8 +20008,8 @@ } },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", - "exactJudgeTime" : 24.0900249, - "elementName" : "New Tap", + "exactJudgeTime" : 24.09, + "elementName" : "Tap (24.09002)", "tags" : [ ], @@ -19994,7 +20063,7 @@ } },{ "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", - "isHighlighted" : false, + "isHighlighted" : true, "themeBundleName" : "departure_to_multiverse", "objectName" : "DTM_NoteVisualTap", "elementName" : "New Note Visual", @@ -20124,7 +20193,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 24.4200249, - "elementName" : "New Tap", + "elementName" : "Tap (24.42002)", "tags" : [ ], @@ -20282,7 +20351,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 24.5850258, - "elementName" : "New Tap", + "elementName" : "Tap (24.58503)", "tags" : [ ], @@ -20440,7 +20509,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 24.7500248, - "elementName" : "New Tap", + "elementName" : "Tap (24.75002)", "tags" : [ ], @@ -20598,7 +20667,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 25.0800266, - "elementName" : "New Tap", + "elementName" : "Tap (25.08003)", "tags" : [ ], @@ -20652,7 +20721,7 @@ } },{ "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", - "isHighlighted" : false, + "isHighlighted" : true, "themeBundleName" : "departure_to_multiverse", "objectName" : "DTM_NoteVisualTap", "elementName" : "New Note Visual", @@ -20756,7 +20825,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 25.0800266, - "elementName" : "New Tap", + "elementName" : "Tap (25.08003)", "tags" : [ ], @@ -20810,7 +20879,7 @@ } },{ "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", - "isHighlighted" : false, + "isHighlighted" : true, "themeBundleName" : "departure_to_multiverse", "objectName" : "DTM_NoteVisualTap", "elementName" : "New Note Visual", @@ -20914,7 +20983,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 25.4100266, - "elementName" : "New Tap", + "elementName" : "Tap (25.41003)", "tags" : [ ], @@ -21072,7 +21141,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 25.5750256, - "elementName" : "New Tap", + "elementName" : "Tap (25.57503)", "tags" : [ ], @@ -21230,7 +21299,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 25.7400265, - "elementName" : "New Tap", + "elementName" : "Tap (25.74003)", "tags" : [ ], @@ -21388,7 +21457,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 25.85003, - "elementName" : "New Tap", + "elementName" : "Tap (25.85003)", "tags" : [ ], @@ -21546,7 +21615,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 25.9600315, - "elementName" : "New Tap", + "elementName" : "Tap (25.96003)", "tags" : [ ], @@ -21704,7 +21773,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 26.0700321, - "elementName" : "New Tap", + "elementName" : "Tap (26.07003)", "tags" : [ ], @@ -21888,7 +21957,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 26.4000282, - "elementName" : "New Tap", + "elementName" : "Tap (26.40003)", "tags" : [ ], @@ -22046,7 +22115,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 26.5650272, - "elementName" : "New Tap", + "elementName" : "Tap (26.56503)", "tags" : [ ], @@ -22204,7 +22273,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 26.7300282, - "elementName" : "New Tap", + "elementName" : "Tap (26.73003)", "tags" : [ ], @@ -22362,7 +22431,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 27.0600281, - "elementName" : "New Tap", + "elementName" : "Tap (27.06003)", "tags" : [ ], @@ -22416,7 +22485,7 @@ } },{ "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", - "isHighlighted" : false, + "isHighlighted" : true, "themeBundleName" : "departure_to_multiverse", "objectName" : "DTM_NoteVisualTap", "elementName" : "New Note Visual", @@ -22520,7 +22589,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 27.0600281, - "elementName" : "New Tap", + "elementName" : "Tap (27.06003)", "tags" : [ ], @@ -22574,7 +22643,7 @@ } },{ "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", - "isHighlighted" : false, + "isHighlighted" : true, "themeBundleName" : "departure_to_multiverse", "objectName" : "DTM_NoteVisualTap", "elementName" : "New Note Visual", @@ -22678,7 +22747,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 27.390028, - "elementName" : "New Tap", + "elementName" : "Tap (27.39003)", "tags" : [ ], @@ -22836,7 +22905,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 27.5550289, - "elementName" : "New Tap", + "elementName" : "Tap (27.55503)", "tags" : [ ], @@ -22994,7 +23063,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 27.7200279, - "elementName" : "New Tap", + "elementName" : "Tap (27.72003)", "tags" : [ ], @@ -23152,7 +23221,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 27.8850288, - "elementName" : "New Tap", + "elementName" : "Tap (27.88503)", "tags" : [ ], @@ -23310,7 +23379,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", "exactJudgeTime" : 27.9399872, - "elementName" : "New Stay", + "elementName" : "Stay (27.93999)", "tags" : [ ], @@ -23462,7 +23531,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", "exactJudgeTime" : 27.9949875, - "elementName" : "New Stay", + "elementName" : "Stay (27.99499)", "tags" : [ ], @@ -23613,8 +23682,8 @@ } },{ "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", - "exactJudgeTime" : 28.0499859, - "elementName" : "New Stay", + "exactJudgeTime" : 28.05, + "elementName" : "Stay (28.04999)", "tags" : [ ], @@ -23668,7 +23737,7 @@ } },{ "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", - "isHighlighted" : false, + "isHighlighted" : true, "themeBundleName" : "departure_to_multiverse", "objectName" : "DTM_NoteVisualStay", "elementName" : "New Note Visual", @@ -23765,8 +23834,8 @@ } },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", - "exactJudgeTime" : 28.05003, - "elementName" : "New Tap", + "exactJudgeTime" : 28.05, + "elementName" : "Tap (28.05003)", "tags" : [ ], @@ -23820,7 +23889,7 @@ } },{ "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", - "isHighlighted" : false, + "isHighlighted" : true, "themeBundleName" : "departure_to_multiverse", "objectName" : "DTM_NoteVisualTap", "elementName" : "New Note Visual", @@ -23836,9 +23905,9 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", "originalPosition" : { - "x" : 0, + "x" : -2.38385567E-07, "y" : 0, - "z" : 0 + "z" : -3.967205E-09 }, "originalEulerAngles" : { "x" : 0, @@ -23950,7 +24019,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 28.38003, - "elementName" : "New Tap", + "elementName" : "Tap (28.38003)", "tags" : [ ], @@ -24108,7 +24177,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 28.5450287, - "elementName" : "New Tap", + "elementName" : "Tap (28.54503)", "tags" : [ ], @@ -24266,7 +24335,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 28.71003, - "elementName" : "New Tap", + "elementName" : "Tap (28.71003)", "tags" : [ ], @@ -24424,7 +24493,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 28.87503, - "elementName" : "New Tap", + "elementName" : "Tap (28.87503)", "tags" : [ ], @@ -24582,7 +24651,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 29.04003, - "elementName" : "New Tap", + "elementName" : "Tap (29.04003)", "tags" : [ ], @@ -24740,7 +24809,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 29.20503, - "elementName" : "New Tap", + "elementName" : "Tap (29.20503)", "tags" : [ ], @@ -24898,7 +24967,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", "exactJudgeTime" : 29.25997, - "elementName" : "New Stay", + "elementName" : "Stay (29.25997)", "tags" : [ ], @@ -25050,7 +25119,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", "exactJudgeTime" : 29.3149681, - "elementName" : "New Stay", + "elementName" : "Stay (29.31497)", "tags" : [ ], @@ -25201,8 +25270,8 @@ } },{ "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", - "exactJudgeTime" : 29.3699665, - "elementName" : "New Stay", + "exactJudgeTime" : 29.37, + "elementName" : "Stay (29.36997)", "tags" : [ ], @@ -25256,7 +25325,7 @@ } },{ "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", - "isHighlighted" : false, + "isHighlighted" : true, "themeBundleName" : "departure_to_multiverse", "objectName" : "DTM_NoteVisualStay", "elementName" : "New Note Visual", @@ -25353,8 +25422,8 @@ } },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", - "exactJudgeTime" : 29.37006, - "elementName" : "New Tap", + "exactJudgeTime" : 29.37, + "elementName" : "Tap (29.37006)", "tags" : [ ], @@ -25408,7 +25477,7 @@ } },{ "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", - "isHighlighted" : false, + "isHighlighted" : true, "themeBundleName" : "departure_to_multiverse", "objectName" : "DTM_NoteVisualTap", "elementName" : "New Note Visual", @@ -25512,7 +25581,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 29.48006, - "elementName" : "New Tap", + "elementName" : "Tap (29.48006)", "tags" : [ ], @@ -25670,7 +25739,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 29.5900631, - "elementName" : "New Tap", + "elementName" : "Tap (29.59006)", "tags" : [ ], @@ -25828,7 +25897,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 29.7000637, - "elementName" : "New Tap", + "elementName" : "Tap (29.70006)", "tags" : [ ], @@ -25986,7 +26055,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 29.8100643, - "elementName" : "New Tap", + "elementName" : "Tap (29.81006)", "tags" : [ ], @@ -26144,7 +26213,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 29.9200649, - "elementName" : "New Tap", + "elementName" : "Tap (29.92006)", "tags" : [ ], @@ -26302,7 +26371,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 30.0300312, - "elementName" : "New Tap", + "elementName" : "Tap (30.03003)", "tags" : [ ], @@ -26486,7 +26555,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", "exactJudgeTime" : 30.47007, - "elementName" : "New Stay", + "elementName" : "Stay (30.47007)", "tags" : [ ], @@ -26638,7 +26707,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 30.36007, - "elementName" : "New Tap", + "elementName" : "Tap (30.36007)", "tags" : [ ], @@ -26796,7 +26865,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", "exactJudgeTime" : 30.58007, - "elementName" : "New Stay", + "elementName" : "Stay (30.58007)", "tags" : [ ], @@ -26948,7 +27017,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", "exactJudgeTime" : 30.6900711, - "elementName" : "New Stay", + "elementName" : "Stay (30.69007)", "tags" : [ ], @@ -27100,7 +27169,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 30.855032, - "elementName" : "New Tap", + "elementName" : "Tap (30.85503)", "tags" : [ ], @@ -27258,7 +27327,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 31.0200329, - "elementName" : "New Tap", + "elementName" : "Tap (31.02003)", "tags" : [ ], @@ -27416,7 +27485,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", "exactJudgeTime" : 31.3500328, - "elementName" : "New Tap", + "elementName" : "Tap (31.35003)", "tags" : [ ], @@ -27573,8 +27642,8 @@ } },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", - "exactJudgeTime" : 31.5150318, - "elementName" : "New Tap", + "exactJudgeTime" : 31.515, + "elementName" : "Tap (31.51503)", "tags" : [ ], @@ -27628,7 +27697,7 @@ } },{ "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", - "isHighlighted" : false, + "isHighlighted" : true, "themeBundleName" : "departure_to_multiverse", "objectName" : "DTM_NoteVisualTap", "elementName" : "New Note Visual", @@ -27731,8 +27800,8 @@ } },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", - "exactJudgeTime" : 31.6800327, - "elementName" : "New Tap", + "exactJudgeTime" : 31.68, + "elementName" : "Tap (31.68003)", "tags" : [ ], @@ -27786,7 +27855,7 @@ } },{ "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", - "isHighlighted" : false, + "isHighlighted" : true, "themeBundleName" : "departure_to_multiverse", "objectName" : "DTM_NoteVisualTap", "elementName" : "New Note Visual", @@ -27890,7 +27959,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", "exactJudgeTime" : 31.4049377, - "elementName" : "New Stay", + "elementName" : "Stay (31.40494)", "tags" : [ ], @@ -28042,7 +28111,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", "exactJudgeTime" : 31.459938, - "elementName" : "New Stay", + "elementName" : "Stay (31.45994)", "tags" : [ ], @@ -28193,8 +28262,8 @@ } },{ "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", - "exactJudgeTime" : 31.5149364, - "elementName" : "New Stay", + "exactJudgeTime" : 31.515, + "elementName" : "Stay (31.51494)", "tags" : [ ], @@ -28248,7 +28317,7 @@ } },{ "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", - "isHighlighted" : false, + "isHighlighted" : true, "themeBundleName" : "departure_to_multiverse", "objectName" : "DTM_NoteVisualStay", "elementName" : "New Note Visual", @@ -28346,7 +28415,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", "exactJudgeTime" : 31.5699368, - "elementName" : "New Stay", + "elementName" : "Stay (31.56994)", "tags" : [ ], @@ -28498,7 +28567,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", "exactJudgeTime" : 31.6249352, - "elementName" : "New Stay", + "elementName" : "Stay (31.62494)", "tags" : [ ], @@ -28649,8 +28718,8 @@ } },{ "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", - "exactJudgeTime" : 31.6799355, - "elementName" : "New Stay", + "exactJudgeTime" : 31.68, + "elementName" : "Stay (31.67994)", "tags" : [ ], @@ -28704,7 +28773,7 @@ } },{ "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", - "isHighlighted" : false, + "isHighlighted" : true, "themeBundleName" : "departure_to_multiverse", "objectName" : "DTM_NoteVisualStay", "elementName" : "New Note Visual", @@ -28802,7 +28871,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", "exactJudgeTime" : 31.7349339, - "elementName" : "New Stay", + "elementName" : "Stay (31.73493)", "tags" : [ ], @@ -28954,7 +29023,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", "exactJudgeTime" : 31.7899323, - "elementName" : "New Stay", + "elementName" : "Stay (31.78993)", "tags" : [ ], @@ -29106,7 +29175,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", "exactJudgeTime" : 31.8449326, - "elementName" : "New Stay", + "elementName" : "Stay (31.84493)", "tags" : [ ], @@ -29258,7 +29327,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", "exactJudgeTime" : 31.899931, - "elementName" : "New Stay", + "elementName" : "Stay (31.89993)", "tags" : [ ], @@ -29410,7 +29479,7 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", "exactJudgeTime" : 31.9549313, - "elementName" : "New Stay", + "elementName" : "Stay (31.95493)", "tags" : [ ], @@ -29561,8 +29630,8 @@ } },{ "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", - "exactJudgeTime" : 32.00993, - "elementName" : "New Stay", + "exactJudgeTime" : 32.01, + "elementName" : "Stay (32.00993)", "tags" : [ ], @@ -29616,7 +29685,7 @@ } },{ "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", - "isHighlighted" : false, + "isHighlighted" : true, "themeBundleName" : "departure_to_multiverse", "objectName" : "DTM_NoteVisualStay", "elementName" : "New Note Visual", @@ -29833,7 +29902,7 @@ } },{ "__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp", - "elementName" : "Rain1-1(-8,0,140)", + "elementName" : "Rain(0,-15,60)", "tags" : [ ], @@ -29846,1299 +29915,8 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", "originalPosition" : { - "x" : -8, - "y" : 0, - "z" : 140 - }, - "originalEulerAngles" : { "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "00ab3fe4-d3e9-43ca-971c-7a8ebb0bf16d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "00ab3fe4-d3e9-43ca-971c-7a8ebb0bf16d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", - "elementName" : "rain_1", - "tags" : [ - - ], - "elementGuid" : { - "value" : "910dc500-88b6-4e3e-80f8-64d225338e76" - }, - "attachedElementGuid" : { - "value" : "00ab3fe4-d3e9-43ca-971c-7a8ebb0bf16d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : -8, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "910dc500-88b6-4e3e-80f8-64d225338e76" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "910dc500-88b6-4e3e-80f8-64d225338e76" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", - "trackSpaceType" : 0, - "trackSamplingType" : 0, - "isClosed" : false, - "isShowingDisplay" : false, - "attachedElementGuid" : { - "value" : "910dc500-88b6-4e3e-80f8-64d225338e76" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", - "trackStartTime" : 16.17, - "trackEndTime" : 20.13, - "visibleTrackTimeLength" : 1, - "animationCurveType" : 0, - "attachedElementGuid" : { - "value" : "910dc500-88b6-4e3e-80f8-64d225338e76" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "a3f9aa12-d282-4036-898b-dad1edcbb8ba" - }, - "attachedElementGuid" : { - "value" : "910dc500-88b6-4e3e-80f8-64d225338e76" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : -1, - "y" : 10, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "a3f9aa12-d282-4036-898b-dad1edcbb8ba" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "a3f9aa12-d282-4036-898b-dad1edcbb8ba" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "a3f9aa12-d282-4036-898b-dad1edcbb8ba" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "550db98f-8311-44a4-8b73-be1a1563b4c1" - }, - "attachedElementGuid" : { - "value" : "910dc500-88b6-4e3e-80f8-64d225338e76" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "550db98f-8311-44a4-8b73-be1a1563b4c1" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "550db98f-8311-44a4-8b73-be1a1563b4c1" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "550db98f-8311-44a4-8b73-be1a1563b4c1" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", - "motionApplyRotation" : false, - "motionEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "elementName" : "New Track Head Point", - "tags" : [ - - ], - "elementGuid" : { - "value" : "48d30acb-6f80-4fe7-8038-57928d7f40f2" - }, - "attachedElementGuid" : { - "value" : "910dc500-88b6-4e3e-80f8-64d225338e76" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "48d30acb-6f80-4fe7-8038-57928d7f40f2" - } - },{ - "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", - "visibleTimeLength" : { - "animatedFloatList" : [ - { - "startValue" : 0.5, - "endValue" : 0.5, - "startTime" : 0, - "endTime" : 20, - "animationCurveType" : 0 - } - ] - }, - "enableTimes" : { - "animatedBoolList" : [ - { - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 1 - } - ] - }, - "enableProcessTime" : 0.99, - "headSize" : 0, - "headRotateSpeed" : { - "animatedFloatList" : [ - - ] - }, - "isStatic" : false, - "themeBundleName" : "departure_to_multiverse", - "objectName" : "DTM_Trail", - "elementName" : "trail", - "tags" : [ - - ], - "elementGuid" : { - "value" : "7400ebf3-457a-49e6-9c7a-e8c64f437035" - }, - "attachedElementGuid" : { - "value" : "48d30acb-6f80-4fe7-8038-57928d7f40f2" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 2, - "y" : 2, - "z" : 2 - }, - "attachedElementGuid" : { - "value" : "7400ebf3-457a-49e6-9c7a-e8c64f437035" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "7400ebf3-457a-49e6-9c7a-e8c64f437035" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 0.206075191, - "g" : 0.619557559, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : true, - "originalEmissionColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "originalEmissionIntensity" : 2, - "attachedElementGuid" : { - "value" : "7400ebf3-457a-49e6-9c7a-e8c64f437035" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", - "elementName" : "rain_1", - "tags" : [ - - ], - "elementGuid" : { - "value" : "314cf64c-8ec8-47d2-8560-5ea78d57a01f" - }, - "attachedElementGuid" : { - "value" : "00ab3fe4-d3e9-43ca-971c-7a8ebb0bf16d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : -2, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "314cf64c-8ec8-47d2-8560-5ea78d57a01f" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "314cf64c-8ec8-47d2-8560-5ea78d57a01f" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", - "trackSpaceType" : 0, - "trackSamplingType" : 0, - "isClosed" : false, - "isShowingDisplay" : false, - "attachedElementGuid" : { - "value" : "314cf64c-8ec8-47d2-8560-5ea78d57a01f" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", - "trackStartTime" : 16.5, - "trackEndTime" : 20.46, - "visibleTrackTimeLength" : 1, - "animationCurveType" : 0, - "attachedElementGuid" : { - "value" : "314cf64c-8ec8-47d2-8560-5ea78d57a01f" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "e2a33539-3b4d-4aa5-9f82-b80e9c04e61d" - }, - "attachedElementGuid" : { - "value" : "314cf64c-8ec8-47d2-8560-5ea78d57a01f" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : -1, - "y" : 10, - "z" : 15 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "e2a33539-3b4d-4aa5-9f82-b80e9c04e61d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "e2a33539-3b4d-4aa5-9f82-b80e9c04e61d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "e2a33539-3b4d-4aa5-9f82-b80e9c04e61d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "02401584-50cd-4b59-9773-235889d61e68" - }, - "attachedElementGuid" : { - "value" : "314cf64c-8ec8-47d2-8560-5ea78d57a01f" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 15 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "02401584-50cd-4b59-9773-235889d61e68" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "02401584-50cd-4b59-9773-235889d61e68" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "02401584-50cd-4b59-9773-235889d61e68" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", - "motionApplyRotation" : false, - "motionEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "elementName" : "New Track Head Point", - "tags" : [ - - ], - "elementGuid" : { - "value" : "7b1442b4-f473-4615-af11-456c900c50ff" - }, - "attachedElementGuid" : { - "value" : "314cf64c-8ec8-47d2-8560-5ea78d57a01f" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "7b1442b4-f473-4615-af11-456c900c50ff" - } - },{ - "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", - "visibleTimeLength" : { - "animatedFloatList" : [ - { - "startValue" : 0.5, - "endValue" : 0.5, - "startTime" : 0, - "endTime" : 20, - "animationCurveType" : 0 - } - ] - }, - "enableTimes" : { - "animatedBoolList" : [ - { - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 1 - } - ] - }, - "enableProcessTime" : 0.99, - "headSize" : 0, - "headRotateSpeed" : { - "animatedFloatList" : [ - - ] - }, - "isStatic" : false, - "themeBundleName" : "departure_to_multiverse", - "objectName" : "DTM_Trail", - "elementName" : "trail", - "tags" : [ - - ], - "elementGuid" : { - "value" : "42b9c020-068c-4d52-b136-cc4501215bc7" - }, - "attachedElementGuid" : { - "value" : "7b1442b4-f473-4615-af11-456c900c50ff" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 2, - "y" : 2, - "z" : 2 - }, - "attachedElementGuid" : { - "value" : "42b9c020-068c-4d52-b136-cc4501215bc7" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "42b9c020-068c-4d52-b136-cc4501215bc7" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 0.206075191, - "g" : 0.619557559, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : true, - "originalEmissionColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "originalEmissionIntensity" : 2, - "attachedElementGuid" : { - "value" : "42b9c020-068c-4d52-b136-cc4501215bc7" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", - "elementName" : "rain_1", - "tags" : [ - - ], - "elementGuid" : { - "value" : "acb80c27-b4ce-4410-a3d8-7bf1431539bc" - }, - "attachedElementGuid" : { - "value" : "00ab3fe4-d3e9-43ca-971c-7a8ebb0bf16d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : -12, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "acb80c27-b4ce-4410-a3d8-7bf1431539bc" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "acb80c27-b4ce-4410-a3d8-7bf1431539bc" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", - "trackSpaceType" : 0, - "trackSamplingType" : 0, - "isClosed" : false, - "isShowingDisplay" : false, - "attachedElementGuid" : { - "value" : "acb80c27-b4ce-4410-a3d8-7bf1431539bc" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", - "trackStartTime" : 16.83, - "trackEndTime" : 20.789999, - "visibleTrackTimeLength" : 1, - "animationCurveType" : 0, - "attachedElementGuid" : { - "value" : "acb80c27-b4ce-4410-a3d8-7bf1431539bc" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "25fb688e-e581-413f-936f-f18da545ca82" - }, - "attachedElementGuid" : { - "value" : "acb80c27-b4ce-4410-a3d8-7bf1431539bc" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : -1, - "y" : 10, - "z" : 30 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "25fb688e-e581-413f-936f-f18da545ca82" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "25fb688e-e581-413f-936f-f18da545ca82" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "25fb688e-e581-413f-936f-f18da545ca82" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "f9954fd8-ea5d-455b-aeab-43bddabb2f6c" - }, - "attachedElementGuid" : { - "value" : "acb80c27-b4ce-4410-a3d8-7bf1431539bc" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 30 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "f9954fd8-ea5d-455b-aeab-43bddabb2f6c" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "f9954fd8-ea5d-455b-aeab-43bddabb2f6c" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "f9954fd8-ea5d-455b-aeab-43bddabb2f6c" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", - "motionApplyRotation" : false, - "motionEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "elementName" : "New Track Head Point", - "tags" : [ - - ], - "elementGuid" : { - "value" : "0d8baf59-99fd-4c06-a3da-d19ff7765161" - }, - "attachedElementGuid" : { - "value" : "acb80c27-b4ce-4410-a3d8-7bf1431539bc" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "0d8baf59-99fd-4c06-a3da-d19ff7765161" - } - },{ - "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", - "visibleTimeLength" : { - "animatedFloatList" : [ - { - "startValue" : 0.5, - "endValue" : 0.5, - "startTime" : 0, - "endTime" : 20, - "animationCurveType" : 0 - } - ] - }, - "enableTimes" : { - "animatedBoolList" : [ - { - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 1 - } - ] - }, - "enableProcessTime" : 0.99, - "headSize" : 0, - "headRotateSpeed" : { - "animatedFloatList" : [ - - ] - }, - "isStatic" : false, - "themeBundleName" : "departure_to_multiverse", - "objectName" : "DTM_Trail", - "elementName" : "trail", - "tags" : [ - - ], - "elementGuid" : { - "value" : "19943578-6b53-471b-a85b-ea7951f4749f" - }, - "attachedElementGuid" : { - "value" : "0d8baf59-99fd-4c06-a3da-d19ff7765161" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 2, - "y" : 2, - "z" : 2 - }, - "attachedElementGuid" : { - "value" : "19943578-6b53-471b-a85b-ea7951f4749f" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "19943578-6b53-471b-a85b-ea7951f4749f" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 0.206075191, - "g" : 0.619557559, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : true, - "originalEmissionColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "originalEmissionIntensity" : 2, - "attachedElementGuid" : { - "value" : "19943578-6b53-471b-a85b-ea7951f4749f" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", - "elementName" : "rain_1", - "tags" : [ - - ], - "elementGuid" : { - "value" : "d6e87cb1-f996-411b-84eb-a4a4a61f2c2d" - }, - "attachedElementGuid" : { - "value" : "00ab3fe4-d3e9-43ca-971c-7a8ebb0bf16d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 10, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "d6e87cb1-f996-411b-84eb-a4a4a61f2c2d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "d6e87cb1-f996-411b-84eb-a4a4a61f2c2d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", - "trackSpaceType" : 0, - "trackSamplingType" : 0, - "isClosed" : false, - "isShowingDisplay" : false, - "attachedElementGuid" : { - "value" : "d6e87cb1-f996-411b-84eb-a4a4a61f2c2d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", - "trackStartTime" : 17.16, - "trackEndTime" : 21.1199989, - "visibleTrackTimeLength" : 1, - "animationCurveType" : 0, - "attachedElementGuid" : { - "value" : "d6e87cb1-f996-411b-84eb-a4a4a61f2c2d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "338de603-d842-4e4f-b5a1-a1dc8cfcb118" - }, - "attachedElementGuid" : { - "value" : "d6e87cb1-f996-411b-84eb-a4a4a61f2c2d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : -1, - "y" : 10, - "z" : 45 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "338de603-d842-4e4f-b5a1-a1dc8cfcb118" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "338de603-d842-4e4f-b5a1-a1dc8cfcb118" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "338de603-d842-4e4f-b5a1-a1dc8cfcb118" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "ae51b7a1-8cc9-4abd-9e2f-370c402eb6c3" - }, - "attachedElementGuid" : { - "value" : "d6e87cb1-f996-411b-84eb-a4a4a61f2c2d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 45 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "ae51b7a1-8cc9-4abd-9e2f-370c402eb6c3" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "ae51b7a1-8cc9-4abd-9e2f-370c402eb6c3" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "ae51b7a1-8cc9-4abd-9e2f-370c402eb6c3" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", - "motionApplyRotation" : false, - "motionEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "elementName" : "New Track Head Point", - "tags" : [ - - ], - "elementGuid" : { - "value" : "8d034b1f-972f-46d8-ad32-36e9402e7702" - }, - "attachedElementGuid" : { - "value" : "d6e87cb1-f996-411b-84eb-a4a4a61f2c2d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "8d034b1f-972f-46d8-ad32-36e9402e7702" - } - },{ - "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", - "visibleTimeLength" : { - "animatedFloatList" : [ - { - "startValue" : 0.5, - "endValue" : 0.5, - "startTime" : 0, - "endTime" : 20, - "animationCurveType" : 0 - } - ] - }, - "enableTimes" : { - "animatedBoolList" : [ - { - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 1 - } - ] - }, - "enableProcessTime" : 0.99, - "headSize" : 0, - "headRotateSpeed" : { - "animatedFloatList" : [ - - ] - }, - "isStatic" : false, - "themeBundleName" : "departure_to_multiverse", - "objectName" : "DTM_Trail", - "elementName" : "trail", - "tags" : [ - - ], - "elementGuid" : { - "value" : "f93240a7-6eb7-400e-a763-61ea61013b8f" - }, - "attachedElementGuid" : { - "value" : "8d034b1f-972f-46d8-ad32-36e9402e7702" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 2, - "y" : 2, - "z" : 2 - }, - "attachedElementGuid" : { - "value" : "f93240a7-6eb7-400e-a763-61ea61013b8f" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "f93240a7-6eb7-400e-a763-61ea61013b8f" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 0.206075191, - "g" : 0.619557559, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : true, - "originalEmissionColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "originalEmissionIntensity" : 2, - "attachedElementGuid" : { - "value" : "f93240a7-6eb7-400e-a763-61ea61013b8f" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", - "elementName" : "rain_1", - "tags" : [ - - ], - "elementGuid" : { - "value" : "97c3d727-df62-430a-9f5e-7a856ad17f81" - }, - "attachedElementGuid" : { - "value" : "00ab3fe4-d3e9-43ca-971c-7a8ebb0bf16d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : -5, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "97c3d727-df62-430a-9f5e-7a856ad17f81" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "97c3d727-df62-430a-9f5e-7a856ad17f81" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", - "trackSpaceType" : 0, - "trackSamplingType" : 0, - "isClosed" : false, - "isShowingDisplay" : false, - "attachedElementGuid" : { - "value" : "97c3d727-df62-430a-9f5e-7a856ad17f81" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", - "trackStartTime" : 17.49, - "trackEndTime" : 21.4499989, - "visibleTrackTimeLength" : 1, - "animationCurveType" : 0, - "attachedElementGuid" : { - "value" : "97c3d727-df62-430a-9f5e-7a856ad17f81" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "5e260bc5-a092-4ec0-9a96-6c196123d4e6" - }, - "attachedElementGuid" : { - "value" : "97c3d727-df62-430a-9f5e-7a856ad17f81" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : -1, - "y" : 10, + "y" : -15, "z" : 60 }, "originalEulerAngles" : { @@ -31151,3497 +29929,20 @@ "y" : 1, "z" : 1 }, - "attachedElementGuid" : { - "value" : "5e260bc5-a092-4ec0-9a96-6c196123d4e6" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "5e260bc5-a092-4ec0-9a96-6c196123d4e6" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "5e260bc5-a092-4ec0-9a96-6c196123d4e6" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "721846db-dbea-4403-a137-a4f7bf3445e2" - }, - "attachedElementGuid" : { - "value" : "97c3d727-df62-430a-9f5e-7a856ad17f81" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 60 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "721846db-dbea-4403-a137-a4f7bf3445e2" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "721846db-dbea-4403-a137-a4f7bf3445e2" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "721846db-dbea-4403-a137-a4f7bf3445e2" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", - "motionApplyRotation" : false, - "motionEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "elementName" : "New Track Head Point", - "tags" : [ - - ], - "elementGuid" : { - "value" : "517c9293-c0a4-44f6-8823-77cbb71d8856" - }, - "attachedElementGuid" : { - "value" : "97c3d727-df62-430a-9f5e-7a856ad17f81" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "517c9293-c0a4-44f6-8823-77cbb71d8856" - } - },{ - "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", - "visibleTimeLength" : { - "animatedFloatList" : [ - { - "startValue" : 0.5, - "endValue" : 0.5, - "startTime" : 0, - "endTime" : 20, - "animationCurveType" : 0 - } - ] - }, - "enableTimes" : { - "animatedBoolList" : [ - { - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 1 - } - ] - }, - "enableProcessTime" : 0.99, - "headSize" : 0, - "headRotateSpeed" : { - "animatedFloatList" : [ - - ] - }, - "isStatic" : false, - "themeBundleName" : "departure_to_multiverse", - "objectName" : "DTM_Trail", - "elementName" : "trail", - "tags" : [ - - ], - "elementGuid" : { - "value" : "12c9247a-eaf8-4e12-8431-f4d7e053aaf2" - }, - "attachedElementGuid" : { - "value" : "517c9293-c0a4-44f6-8823-77cbb71d8856" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 2, - "y" : 2, - "z" : 2 - }, - "attachedElementGuid" : { - "value" : "12c9247a-eaf8-4e12-8431-f4d7e053aaf2" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "12c9247a-eaf8-4e12-8431-f4d7e053aaf2" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 0.206075191, - "g" : 0.619557559, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : true, - "originalEmissionColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "originalEmissionIntensity" : 2, - "attachedElementGuid" : { - "value" : "12c9247a-eaf8-4e12-8431-f4d7e053aaf2" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", - "elementName" : "rain_1", - "tags" : [ - - ], - "elementGuid" : { - "value" : "2654d30f-a243-41ca-ab93-6a5aaf46179d" - }, "attachedElementGuid" : { "value" : "00ab3fe4-d3e9-43ca-971c-7a8ebb0bf16d" } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : -5.8, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "2654d30f-a243-41ca-ab93-6a5aaf46179d" - } },{ "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", "isOverridingDuration" : false, "startTime" : -32767, "endTime" : 32767, - "attachedElementGuid" : { - "value" : "2654d30f-a243-41ca-ab93-6a5aaf46179d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", - "trackSpaceType" : 0, - "trackSamplingType" : 0, - "isClosed" : false, - "isShowingDisplay" : false, - "attachedElementGuid" : { - "value" : "2654d30f-a243-41ca-ab93-6a5aaf46179d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", - "trackStartTime" : 17.82, - "trackEndTime" : 21.7799988, - "visibleTrackTimeLength" : 1, - "animationCurveType" : 0, - "attachedElementGuid" : { - "value" : "2654d30f-a243-41ca-ab93-6a5aaf46179d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "f939b6b3-40f6-48fa-aaa4-bc80ae364d3b" - }, - "attachedElementGuid" : { - "value" : "2654d30f-a243-41ca-ab93-6a5aaf46179d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : -1, - "y" : 10, - "z" : 75 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "f939b6b3-40f6-48fa-aaa4-bc80ae364d3b" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "f939b6b3-40f6-48fa-aaa4-bc80ae364d3b" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "f939b6b3-40f6-48fa-aaa4-bc80ae364d3b" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "9246adab-a97b-4214-95f9-8ba4a5724b1e" - }, - "attachedElementGuid" : { - "value" : "2654d30f-a243-41ca-ab93-6a5aaf46179d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 75 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "9246adab-a97b-4214-95f9-8ba4a5724b1e" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "9246adab-a97b-4214-95f9-8ba4a5724b1e" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "9246adab-a97b-4214-95f9-8ba4a5724b1e" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", - "motionApplyRotation" : false, - "motionEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "elementName" : "New Track Head Point", - "tags" : [ - - ], - "elementGuid" : { - "value" : "b948f2dc-0d98-4301-bc80-bef31ea868f0" - }, - "attachedElementGuid" : { - "value" : "2654d30f-a243-41ca-ab93-6a5aaf46179d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "b948f2dc-0d98-4301-bc80-bef31ea868f0" - } - },{ - "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", - "visibleTimeLength" : { - "animatedFloatList" : [ - { - "startValue" : 0.5, - "endValue" : 0.5, - "startTime" : 0, - "endTime" : 20, - "animationCurveType" : 0 - } - ] - }, - "enableTimes" : { - "animatedBoolList" : [ - { - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 1 - } - ] - }, - "enableProcessTime" : 0.99, - "headSize" : 0, - "headRotateSpeed" : { - "animatedFloatList" : [ - - ] - }, - "isStatic" : false, - "themeBundleName" : "departure_to_multiverse", - "objectName" : "DTM_Trail", - "elementName" : "trail", - "tags" : [ - - ], - "elementGuid" : { - "value" : "7ab753ce-c9db-4b85-a267-eebf73132287" - }, - "attachedElementGuid" : { - "value" : "b948f2dc-0d98-4301-bc80-bef31ea868f0" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 2, - "y" : 2, - "z" : 2 - }, - "attachedElementGuid" : { - "value" : "7ab753ce-c9db-4b85-a267-eebf73132287" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "7ab753ce-c9db-4b85-a267-eebf73132287" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 0.206075191, - "g" : 0.619557559, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : true, - "originalEmissionColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "originalEmissionIntensity" : 2, - "attachedElementGuid" : { - "value" : "7ab753ce-c9db-4b85-a267-eebf73132287" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", - "elementName" : "rain_1", - "tags" : [ - - ], - "elementGuid" : { - "value" : "195a8cd1-fc82-443f-ba3f-07b2312d33eb" - }, "attachedElementGuid" : { "value" : "00ab3fe4-d3e9-43ca-971c-7a8ebb0bf16d" } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 4.8, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "195a8cd1-fc82-443f-ba3f-07b2312d33eb" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "195a8cd1-fc82-443f-ba3f-07b2312d33eb" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", - "trackSpaceType" : 0, - "trackSamplingType" : 0, - "isClosed" : false, - "isShowingDisplay" : false, - "attachedElementGuid" : { - "value" : "195a8cd1-fc82-443f-ba3f-07b2312d33eb" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", - "trackStartTime" : 18.15, - "trackEndTime" : 22.1099987, - "visibleTrackTimeLength" : 1, - "animationCurveType" : 0, - "attachedElementGuid" : { - "value" : "195a8cd1-fc82-443f-ba3f-07b2312d33eb" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "fa2a1433-ebcd-40c0-8db3-a39a9472d75f" - }, - "attachedElementGuid" : { - "value" : "195a8cd1-fc82-443f-ba3f-07b2312d33eb" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : -1, - "y" : 10, - "z" : 90 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "fa2a1433-ebcd-40c0-8db3-a39a9472d75f" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "fa2a1433-ebcd-40c0-8db3-a39a9472d75f" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "fa2a1433-ebcd-40c0-8db3-a39a9472d75f" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "71635e96-69fc-4a5e-bef1-7b01b0dcda1f" - }, - "attachedElementGuid" : { - "value" : "195a8cd1-fc82-443f-ba3f-07b2312d33eb" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 90 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "71635e96-69fc-4a5e-bef1-7b01b0dcda1f" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "71635e96-69fc-4a5e-bef1-7b01b0dcda1f" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "71635e96-69fc-4a5e-bef1-7b01b0dcda1f" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", - "motionApplyRotation" : false, - "motionEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "elementName" : "New Track Head Point", - "tags" : [ - - ], - "elementGuid" : { - "value" : "013afeb7-6c8a-47ca-86aa-e1c13bd3cdaf" - }, - "attachedElementGuid" : { - "value" : "195a8cd1-fc82-443f-ba3f-07b2312d33eb" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "013afeb7-6c8a-47ca-86aa-e1c13bd3cdaf" - } - },{ - "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", - "visibleTimeLength" : { - "animatedFloatList" : [ - { - "startValue" : 0.5, - "endValue" : 0.5, - "startTime" : 0, - "endTime" : 20, - "animationCurveType" : 0 - } - ] - }, - "enableTimes" : { - "animatedBoolList" : [ - { - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 1 - } - ] - }, - "enableProcessTime" : 0.99, - "headSize" : 0, - "headRotateSpeed" : { - "animatedFloatList" : [ - - ] - }, - "isStatic" : false, - "themeBundleName" : "departure_to_multiverse", - "objectName" : "DTM_Trail", - "elementName" : "trail", - "tags" : [ - - ], - "elementGuid" : { - "value" : "0e2292c8-876d-4967-859a-88f2d8486f15" - }, - "attachedElementGuid" : { - "value" : "013afeb7-6c8a-47ca-86aa-e1c13bd3cdaf" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 2, - "y" : 2, - "z" : 2 - }, - "attachedElementGuid" : { - "value" : "0e2292c8-876d-4967-859a-88f2d8486f15" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "0e2292c8-876d-4967-859a-88f2d8486f15" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 0.206075191, - "g" : 0.619557559, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : true, - "originalEmissionColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "originalEmissionIntensity" : 2, - "attachedElementGuid" : { - "value" : "0e2292c8-876d-4967-859a-88f2d8486f15" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", - "elementName" : "rain_1", - "tags" : [ - - ], - "elementGuid" : { - "value" : "15d72a0e-d4f3-4c40-92b4-934f68957fa4" - }, - "attachedElementGuid" : { - "value" : "00ab3fe4-d3e9-43ca-971c-7a8ebb0bf16d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : -9, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "15d72a0e-d4f3-4c40-92b4-934f68957fa4" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "15d72a0e-d4f3-4c40-92b4-934f68957fa4" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", - "trackSpaceType" : 0, - "trackSamplingType" : 0, - "isClosed" : false, - "isShowingDisplay" : false, - "attachedElementGuid" : { - "value" : "15d72a0e-d4f3-4c40-92b4-934f68957fa4" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", - "trackStartTime" : 18.48, - "trackEndTime" : 22.4399986, - "visibleTrackTimeLength" : 1, - "animationCurveType" : 0, - "attachedElementGuid" : { - "value" : "15d72a0e-d4f3-4c40-92b4-934f68957fa4" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "dce5dca4-0670-4162-996e-3c2185074513" - }, - "attachedElementGuid" : { - "value" : "15d72a0e-d4f3-4c40-92b4-934f68957fa4" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : -1, - "y" : 10, - "z" : 105 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "dce5dca4-0670-4162-996e-3c2185074513" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "dce5dca4-0670-4162-996e-3c2185074513" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "dce5dca4-0670-4162-996e-3c2185074513" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "76726097-03fa-47be-b90a-e161451cb897" - }, - "attachedElementGuid" : { - "value" : "15d72a0e-d4f3-4c40-92b4-934f68957fa4" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 105 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "76726097-03fa-47be-b90a-e161451cb897" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "76726097-03fa-47be-b90a-e161451cb897" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "76726097-03fa-47be-b90a-e161451cb897" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", - "motionApplyRotation" : false, - "motionEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "elementName" : "New Track Head Point", - "tags" : [ - - ], - "elementGuid" : { - "value" : "c0d1d465-9ca1-422a-aae3-1afe480651fb" - }, - "attachedElementGuid" : { - "value" : "15d72a0e-d4f3-4c40-92b4-934f68957fa4" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "c0d1d465-9ca1-422a-aae3-1afe480651fb" - } - },{ - "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", - "visibleTimeLength" : { - "animatedFloatList" : [ - { - "startValue" : 0.5, - "endValue" : 0.5, - "startTime" : 0, - "endTime" : 20, - "animationCurveType" : 0 - } - ] - }, - "enableTimes" : { - "animatedBoolList" : [ - { - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 1 - } - ] - }, - "enableProcessTime" : 0.99, - "headSize" : 0, - "headRotateSpeed" : { - "animatedFloatList" : [ - - ] - }, - "isStatic" : false, - "themeBundleName" : "departure_to_multiverse", - "objectName" : "DTM_Trail", - "elementName" : "trail", - "tags" : [ - - ], - "elementGuid" : { - "value" : "8620b36d-2616-4d9f-be9b-3d2720529151" - }, - "attachedElementGuid" : { - "value" : "c0d1d465-9ca1-422a-aae3-1afe480651fb" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 2, - "y" : 2, - "z" : 2 - }, - "attachedElementGuid" : { - "value" : "8620b36d-2616-4d9f-be9b-3d2720529151" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "8620b36d-2616-4d9f-be9b-3d2720529151" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 0.206075191, - "g" : 0.619557559, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : true, - "originalEmissionColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "originalEmissionIntensity" : 2, - "attachedElementGuid" : { - "value" : "8620b36d-2616-4d9f-be9b-3d2720529151" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", - "elementName" : "rain_1", - "tags" : [ - - ], - "elementGuid" : { - "value" : "359e598a-2a44-4d22-8258-e5bc848c6373" - }, - "attachedElementGuid" : { - "value" : "00ab3fe4-d3e9-43ca-971c-7a8ebb0bf16d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "359e598a-2a44-4d22-8258-e5bc848c6373" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "359e598a-2a44-4d22-8258-e5bc848c6373" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", - "trackSpaceType" : 0, - "trackSamplingType" : 0, - "isClosed" : false, - "isShowingDisplay" : false, - "attachedElementGuid" : { - "value" : "359e598a-2a44-4d22-8258-e5bc848c6373" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", - "trackStartTime" : 18.81, - "trackEndTime" : 22.7699986, - "visibleTrackTimeLength" : 1, - "animationCurveType" : 0, - "attachedElementGuid" : { - "value" : "359e598a-2a44-4d22-8258-e5bc848c6373" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "7b869ed6-c97b-4122-8b4f-71fc8c5cda78" - }, - "attachedElementGuid" : { - "value" : "359e598a-2a44-4d22-8258-e5bc848c6373" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : -1, - "y" : 10, - "z" : 120 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "7b869ed6-c97b-4122-8b4f-71fc8c5cda78" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "7b869ed6-c97b-4122-8b4f-71fc8c5cda78" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "7b869ed6-c97b-4122-8b4f-71fc8c5cda78" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "b766c046-9c5d-4ed3-8064-3b05f39259ee" - }, - "attachedElementGuid" : { - "value" : "359e598a-2a44-4d22-8258-e5bc848c6373" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 120 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "b766c046-9c5d-4ed3-8064-3b05f39259ee" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "b766c046-9c5d-4ed3-8064-3b05f39259ee" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "b766c046-9c5d-4ed3-8064-3b05f39259ee" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", - "motionApplyRotation" : false, - "motionEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "elementName" : "New Track Head Point", - "tags" : [ - - ], - "elementGuid" : { - "value" : "a4606e39-962f-4083-9c55-5b69bb40f491" - }, - "attachedElementGuid" : { - "value" : "359e598a-2a44-4d22-8258-e5bc848c6373" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "a4606e39-962f-4083-9c55-5b69bb40f491" - } - },{ - "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", - "visibleTimeLength" : { - "animatedFloatList" : [ - { - "startValue" : 0.5, - "endValue" : 0.5, - "startTime" : 0, - "endTime" : 20, - "animationCurveType" : 0 - } - ] - }, - "enableTimes" : { - "animatedBoolList" : [ - { - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 1 - } - ] - }, - "enableProcessTime" : 0.99, - "headSize" : 0, - "headRotateSpeed" : { - "animatedFloatList" : [ - - ] - }, - "isStatic" : false, - "themeBundleName" : "departure_to_multiverse", - "objectName" : "DTM_Trail", - "elementName" : "trail", - "tags" : [ - - ], - "elementGuid" : { - "value" : "b886a695-0fd1-429c-a15b-ac8a20a82639" - }, - "attachedElementGuid" : { - "value" : "a4606e39-962f-4083-9c55-5b69bb40f491" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 2, - "y" : 2, - "z" : 2 - }, - "attachedElementGuid" : { - "value" : "b886a695-0fd1-429c-a15b-ac8a20a82639" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "b886a695-0fd1-429c-a15b-ac8a20a82639" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 0.206075191, - "g" : 0.619557559, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : true, - "originalEmissionColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "originalEmissionIntensity" : 2, - "attachedElementGuid" : { - "value" : "b886a695-0fd1-429c-a15b-ac8a20a82639" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", - "elementName" : "rain_1", - "tags" : [ - - ], - "elementGuid" : { - "value" : "12276497-f1c4-4180-a1a5-87fe9cf29e1c" - }, - "attachedElementGuid" : { - "value" : "00ab3fe4-d3e9-43ca-971c-7a8ebb0bf16d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 11, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "12276497-f1c4-4180-a1a5-87fe9cf29e1c" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "12276497-f1c4-4180-a1a5-87fe9cf29e1c" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", - "trackSpaceType" : 0, - "trackSamplingType" : 0, - "isClosed" : false, - "isShowingDisplay" : false, - "attachedElementGuid" : { - "value" : "12276497-f1c4-4180-a1a5-87fe9cf29e1c" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", - "trackStartTime" : 19.14, - "trackEndTime" : 23.0999985, - "visibleTrackTimeLength" : 1, - "animationCurveType" : 0, - "attachedElementGuid" : { - "value" : "12276497-f1c4-4180-a1a5-87fe9cf29e1c" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "12bc566a-25e8-4222-8ac5-659c2a1b91d0" - }, - "attachedElementGuid" : { - "value" : "12276497-f1c4-4180-a1a5-87fe9cf29e1c" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : -1, - "y" : 10, - "z" : 135 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "12bc566a-25e8-4222-8ac5-659c2a1b91d0" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "12bc566a-25e8-4222-8ac5-659c2a1b91d0" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "12bc566a-25e8-4222-8ac5-659c2a1b91d0" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "dfd1f7ae-486d-4b2b-b1eb-72bc4adf3b6e" - }, - "attachedElementGuid" : { - "value" : "12276497-f1c4-4180-a1a5-87fe9cf29e1c" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 135 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "dfd1f7ae-486d-4b2b-b1eb-72bc4adf3b6e" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "dfd1f7ae-486d-4b2b-b1eb-72bc4adf3b6e" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "dfd1f7ae-486d-4b2b-b1eb-72bc4adf3b6e" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", - "motionApplyRotation" : false, - "motionEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "elementName" : "New Track Head Point", - "tags" : [ - - ], - "elementGuid" : { - "value" : "ad86510b-0351-467a-a5a2-1db66d5f52f0" - }, - "attachedElementGuid" : { - "value" : "12276497-f1c4-4180-a1a5-87fe9cf29e1c" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "ad86510b-0351-467a-a5a2-1db66d5f52f0" - } - },{ - "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", - "visibleTimeLength" : { - "animatedFloatList" : [ - { - "startValue" : 0.5, - "endValue" : 0.5, - "startTime" : 0, - "endTime" : 20, - "animationCurveType" : 0 - } - ] - }, - "enableTimes" : { - "animatedBoolList" : [ - { - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 1 - } - ] - }, - "enableProcessTime" : 0.99, - "headSize" : 0, - "headRotateSpeed" : { - "animatedFloatList" : [ - - ] - }, - "isStatic" : false, - "themeBundleName" : "departure_to_multiverse", - "objectName" : "DTM_Trail", - "elementName" : "trail", - "tags" : [ - - ], - "elementGuid" : { - "value" : "41501ab8-0f5a-45d0-9146-4b4a1d877ea8" - }, - "attachedElementGuid" : { - "value" : "ad86510b-0351-467a-a5a2-1db66d5f52f0" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 2, - "y" : 2, - "z" : 2 - }, - "attachedElementGuid" : { - "value" : "41501ab8-0f5a-45d0-9146-4b4a1d877ea8" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "41501ab8-0f5a-45d0-9146-4b4a1d877ea8" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 0.206075191, - "g" : 0.619557559, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : true, - "originalEmissionColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "originalEmissionIntensity" : 2, - "attachedElementGuid" : { - "value" : "41501ab8-0f5a-45d0-9146-4b4a1d877ea8" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", - "elementName" : "rain_1", - "tags" : [ - - ], - "elementGuid" : { - "value" : "dfa3f0d9-7006-48a7-b31d-6a6a6a459885" - }, - "attachedElementGuid" : { - "value" : "00ab3fe4-d3e9-43ca-971c-7a8ebb0bf16d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : -4, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "dfa3f0d9-7006-48a7-b31d-6a6a6a459885" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "dfa3f0d9-7006-48a7-b31d-6a6a6a459885" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", - "trackSpaceType" : 0, - "trackSamplingType" : 0, - "isClosed" : false, - "isShowingDisplay" : false, - "attachedElementGuid" : { - "value" : "dfa3f0d9-7006-48a7-b31d-6a6a6a459885" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", - "trackStartTime" : 19.4700012, - "trackEndTime" : 23.43, - "visibleTrackTimeLength" : 1, - "animationCurveType" : 0, - "attachedElementGuid" : { - "value" : "dfa3f0d9-7006-48a7-b31d-6a6a6a459885" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "1cc8c296-b32a-4832-bba1-4d8157e95130" - }, - "attachedElementGuid" : { - "value" : "dfa3f0d9-7006-48a7-b31d-6a6a6a459885" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : -1, - "y" : 10, - "z" : 150 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "1cc8c296-b32a-4832-bba1-4d8157e95130" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "1cc8c296-b32a-4832-bba1-4d8157e95130" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "1cc8c296-b32a-4832-bba1-4d8157e95130" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "475c8fb5-8ccb-47ff-bb42-ded4bd51d605" - }, - "attachedElementGuid" : { - "value" : "dfa3f0d9-7006-48a7-b31d-6a6a6a459885" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 150 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "475c8fb5-8ccb-47ff-bb42-ded4bd51d605" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "475c8fb5-8ccb-47ff-bb42-ded4bd51d605" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "475c8fb5-8ccb-47ff-bb42-ded4bd51d605" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", - "motionApplyRotation" : false, - "motionEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "elementName" : "New Track Head Point", - "tags" : [ - - ], - "elementGuid" : { - "value" : "9cf56903-8bce-4db0-a697-b2cccff44509" - }, - "attachedElementGuid" : { - "value" : "dfa3f0d9-7006-48a7-b31d-6a6a6a459885" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "9cf56903-8bce-4db0-a697-b2cccff44509" - } - },{ - "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", - "visibleTimeLength" : { - "animatedFloatList" : [ - { - "startValue" : 0.5, - "endValue" : 0.5, - "startTime" : 0, - "endTime" : 20, - "animationCurveType" : 0 - } - ] - }, - "enableTimes" : { - "animatedBoolList" : [ - { - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 1 - } - ] - }, - "enableProcessTime" : 0.99, - "headSize" : 0, - "headRotateSpeed" : { - "animatedFloatList" : [ - - ] - }, - "isStatic" : false, - "themeBundleName" : "departure_to_multiverse", - "objectName" : "DTM_Trail", - "elementName" : "trail", - "tags" : [ - - ], - "elementGuid" : { - "value" : "28f3e7b9-1626-4611-9e2b-898c4e7d061e" - }, - "attachedElementGuid" : { - "value" : "9cf56903-8bce-4db0-a697-b2cccff44509" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 2, - "y" : 2, - "z" : 2 - }, - "attachedElementGuid" : { - "value" : "28f3e7b9-1626-4611-9e2b-898c4e7d061e" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "28f3e7b9-1626-4611-9e2b-898c4e7d061e" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 0.206075191, - "g" : 0.619557559, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : true, - "originalEmissionColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "originalEmissionIntensity" : 2, - "attachedElementGuid" : { - "value" : "28f3e7b9-1626-4611-9e2b-898c4e7d061e" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", - "elementName" : "rain_1", - "tags" : [ - - ], - "elementGuid" : { - "value" : "8adeb1fc-940f-4e08-872c-ef6f25f47196" - }, - "attachedElementGuid" : { - "value" : "00ab3fe4-d3e9-43ca-971c-7a8ebb0bf16d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : -8, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "8adeb1fc-940f-4e08-872c-ef6f25f47196" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "8adeb1fc-940f-4e08-872c-ef6f25f47196" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", - "trackSpaceType" : 0, - "trackSamplingType" : 0, - "isClosed" : false, - "isShowingDisplay" : false, - "attachedElementGuid" : { - "value" : "8adeb1fc-940f-4e08-872c-ef6f25f47196" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", - "trackStartTime" : 19.8, - "trackEndTime" : 23.7599983, - "visibleTrackTimeLength" : 1, - "animationCurveType" : 0, - "attachedElementGuid" : { - "value" : "8adeb1fc-940f-4e08-872c-ef6f25f47196" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "a0f64b84-b9f9-497b-914d-1eb05f6671f1" - }, - "attachedElementGuid" : { - "value" : "8adeb1fc-940f-4e08-872c-ef6f25f47196" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : -1, - "y" : 10, - "z" : 165 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "a0f64b84-b9f9-497b-914d-1eb05f6671f1" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "a0f64b84-b9f9-497b-914d-1eb05f6671f1" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "a0f64b84-b9f9-497b-914d-1eb05f6671f1" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "d108943b-bcc1-4332-82c5-19074e7186dc" - }, - "attachedElementGuid" : { - "value" : "8adeb1fc-940f-4e08-872c-ef6f25f47196" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 165 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "d108943b-bcc1-4332-82c5-19074e7186dc" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "d108943b-bcc1-4332-82c5-19074e7186dc" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "d108943b-bcc1-4332-82c5-19074e7186dc" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", - "motionApplyRotation" : false, - "motionEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "elementName" : "New Track Head Point", - "tags" : [ - - ], - "elementGuid" : { - "value" : "995e32e4-62f9-47ae-af3b-c94844f6c3be" - }, - "attachedElementGuid" : { - "value" : "8adeb1fc-940f-4e08-872c-ef6f25f47196" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "995e32e4-62f9-47ae-af3b-c94844f6c3be" - } - },{ - "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", - "visibleTimeLength" : { - "animatedFloatList" : [ - { - "startValue" : 0.5, - "endValue" : 0.5, - "startTime" : 0, - "endTime" : 20, - "animationCurveType" : 0 - } - ] - }, - "enableTimes" : { - "animatedBoolList" : [ - { - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 1 - } - ] - }, - "enableProcessTime" : 0.99, - "headSize" : 0, - "headRotateSpeed" : { - "animatedFloatList" : [ - - ] - }, - "isStatic" : false, - "themeBundleName" : "departure_to_multiverse", - "objectName" : "DTM_Trail", - "elementName" : "trail", - "tags" : [ - - ], - "elementGuid" : { - "value" : "84729d18-e76d-4f61-89fd-ac705cb47874" - }, - "attachedElementGuid" : { - "value" : "995e32e4-62f9-47ae-af3b-c94844f6c3be" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 2, - "y" : 2, - "z" : 2 - }, - "attachedElementGuid" : { - "value" : "84729d18-e76d-4f61-89fd-ac705cb47874" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "84729d18-e76d-4f61-89fd-ac705cb47874" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 0.206075191, - "g" : 0.619557559, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : true, - "originalEmissionColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "originalEmissionIntensity" : 2, - "attachedElementGuid" : { - "value" : "84729d18-e76d-4f61-89fd-ac705cb47874" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", - "elementName" : "rain_1", - "tags" : [ - - ], - "elementGuid" : { - "value" : "3ed33be5-1f61-4008-9415-76e015843882" - }, - "attachedElementGuid" : { - "value" : "00ab3fe4-d3e9-43ca-971c-7a8ebb0bf16d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 7, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "3ed33be5-1f61-4008-9415-76e015843882" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "3ed33be5-1f61-4008-9415-76e015843882" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", - "trackSpaceType" : 0, - "trackSamplingType" : 0, - "isClosed" : false, - "isShowingDisplay" : false, - "attachedElementGuid" : { - "value" : "3ed33be5-1f61-4008-9415-76e015843882" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", - "trackStartTime" : 20.1300011, - "trackEndTime" : 24.09, - "visibleTrackTimeLength" : 1, - "animationCurveType" : 0, - "attachedElementGuid" : { - "value" : "3ed33be5-1f61-4008-9415-76e015843882" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "20dfda00-181e-4243-a59c-73d0bbd65475" - }, - "attachedElementGuid" : { - "value" : "3ed33be5-1f61-4008-9415-76e015843882" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : -1, - "y" : 10, - "z" : 180 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "20dfda00-181e-4243-a59c-73d0bbd65475" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "20dfda00-181e-4243-a59c-73d0bbd65475" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "20dfda00-181e-4243-a59c-73d0bbd65475" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "bf03ab94-bbac-42ae-9525-eed4060ad998" - }, - "attachedElementGuid" : { - "value" : "3ed33be5-1f61-4008-9415-76e015843882" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 180 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "bf03ab94-bbac-42ae-9525-eed4060ad998" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "bf03ab94-bbac-42ae-9525-eed4060ad998" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "bf03ab94-bbac-42ae-9525-eed4060ad998" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", - "motionApplyRotation" : false, - "motionEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "elementName" : "New Track Head Point", - "tags" : [ - - ], - "elementGuid" : { - "value" : "07720562-5ffb-498a-a89d-49f77a56239f" - }, - "attachedElementGuid" : { - "value" : "3ed33be5-1f61-4008-9415-76e015843882" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "07720562-5ffb-498a-a89d-49f77a56239f" - } - },{ - "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", - "visibleTimeLength" : { - "animatedFloatList" : [ - { - "startValue" : 0.5, - "endValue" : 0.5, - "startTime" : 0, - "endTime" : 20, - "animationCurveType" : 0 - } - ] - }, - "enableTimes" : { - "animatedBoolList" : [ - { - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 1 - } - ] - }, - "enableProcessTime" : 0.99, - "headSize" : 0, - "headRotateSpeed" : { - "animatedFloatList" : [ - - ] - }, - "isStatic" : false, - "themeBundleName" : "departure_to_multiverse", - "objectName" : "DTM_Trail", - "elementName" : "trail", - "tags" : [ - - ], - "elementGuid" : { - "value" : "3a72ee18-6d28-41e9-8b92-e7ca57511555" - }, - "attachedElementGuid" : { - "value" : "07720562-5ffb-498a-a89d-49f77a56239f" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 2, - "y" : 2, - "z" : 2 - }, - "attachedElementGuid" : { - "value" : "3a72ee18-6d28-41e9-8b92-e7ca57511555" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "3a72ee18-6d28-41e9-8b92-e7ca57511555" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 0.206075191, - "g" : 0.619557559, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : true, - "originalEmissionColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "originalEmissionIntensity" : 2, - "attachedElementGuid" : { - "value" : "3a72ee18-6d28-41e9-8b92-e7ca57511555" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", - "elementName" : "rain_1", - "tags" : [ - - ], - "elementGuid" : { - "value" : "c187e500-1389-4e08-8de1-36fe1e5464b2" - }, - "attachedElementGuid" : { - "value" : "00ab3fe4-d3e9-43ca-971c-7a8ebb0bf16d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : -1, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "c187e500-1389-4e08-8de1-36fe1e5464b2" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "c187e500-1389-4e08-8de1-36fe1e5464b2" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", - "trackSpaceType" : 0, - "trackSamplingType" : 0, - "isClosed" : false, - "isShowingDisplay" : false, - "attachedElementGuid" : { - "value" : "c187e500-1389-4e08-8de1-36fe1e5464b2" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", - "trackStartTime" : 20.46, - "trackEndTime" : 24.4199982, - "visibleTrackTimeLength" : 1, - "animationCurveType" : 0, - "attachedElementGuid" : { - "value" : "c187e500-1389-4e08-8de1-36fe1e5464b2" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "8fc2e57d-5c40-44dd-b8bc-5d8748e220de" - }, - "attachedElementGuid" : { - "value" : "c187e500-1389-4e08-8de1-36fe1e5464b2" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : -1, - "y" : 10, - "z" : 195 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "8fc2e57d-5c40-44dd-b8bc-5d8748e220de" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "8fc2e57d-5c40-44dd-b8bc-5d8748e220de" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "8fc2e57d-5c40-44dd-b8bc-5d8748e220de" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "b8f69150-e96a-4725-afc0-85337ac42260" - }, - "attachedElementGuid" : { - "value" : "c187e500-1389-4e08-8de1-36fe1e5464b2" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 195 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "b8f69150-e96a-4725-afc0-85337ac42260" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "b8f69150-e96a-4725-afc0-85337ac42260" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "b8f69150-e96a-4725-afc0-85337ac42260" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", - "motionApplyRotation" : false, - "motionEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "elementName" : "New Track Head Point", - "tags" : [ - - ], - "elementGuid" : { - "value" : "fbba9720-0dda-4d0a-b9bd-7543fbe136a3" - }, - "attachedElementGuid" : { - "value" : "c187e500-1389-4e08-8de1-36fe1e5464b2" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "fbba9720-0dda-4d0a-b9bd-7543fbe136a3" - } - },{ - "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", - "visibleTimeLength" : { - "animatedFloatList" : [ - { - "startValue" : 0.5, - "endValue" : 0.5, - "startTime" : 0, - "endTime" : 20, - "animationCurveType" : 0 - } - ] - }, - "enableTimes" : { - "animatedBoolList" : [ - { - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 1 - } - ] - }, - "enableProcessTime" : 0.99, - "headSize" : 0, - "headRotateSpeed" : { - "animatedFloatList" : [ - - ] - }, - "isStatic" : false, - "themeBundleName" : "departure_to_multiverse", - "objectName" : "DTM_Trail", - "elementName" : "trail", - "tags" : [ - - ], - "elementGuid" : { - "value" : "966392c1-5905-4c96-acf6-69cab29eb241" - }, - "attachedElementGuid" : { - "value" : "fbba9720-0dda-4d0a-b9bd-7543fbe136a3" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 2, - "y" : 2, - "z" : 2 - }, - "attachedElementGuid" : { - "value" : "966392c1-5905-4c96-acf6-69cab29eb241" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "966392c1-5905-4c96-acf6-69cab29eb241" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 0.206075191, - "g" : 0.619557559, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : true, - "originalEmissionColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "originalEmissionIntensity" : 2, - "attachedElementGuid" : { - "value" : "966392c1-5905-4c96-acf6-69cab29eb241" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", - "elementName" : "rain_1", - "tags" : [ - - ], - "elementGuid" : { - "value" : "9ee0274d-58a6-4877-be70-d805eb353b43" - }, - "attachedElementGuid" : { - "value" : "00ab3fe4-d3e9-43ca-971c-7a8ebb0bf16d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 7, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "9ee0274d-58a6-4877-be70-d805eb353b43" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "9ee0274d-58a6-4877-be70-d805eb353b43" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", - "trackSpaceType" : 0, - "trackSamplingType" : 0, - "isClosed" : false, - "isShowingDisplay" : false, - "attachedElementGuid" : { - "value" : "9ee0274d-58a6-4877-be70-d805eb353b43" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", - "trackStartTime" : 20.79, - "trackEndTime" : 24.75, - "visibleTrackTimeLength" : 1, - "animationCurveType" : 0, - "attachedElementGuid" : { - "value" : "9ee0274d-58a6-4877-be70-d805eb353b43" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "6ee67f44-af9f-4901-a2e1-8ccfbbfcb414" - }, - "attachedElementGuid" : { - "value" : "9ee0274d-58a6-4877-be70-d805eb353b43" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : -1, - "y" : 10, - "z" : 210 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "6ee67f44-af9f-4901-a2e1-8ccfbbfcb414" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "6ee67f44-af9f-4901-a2e1-8ccfbbfcb414" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "6ee67f44-af9f-4901-a2e1-8ccfbbfcb414" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "a106ec3a-cd57-4920-872d-7d4fecd276bf" - }, - "attachedElementGuid" : { - "value" : "9ee0274d-58a6-4877-be70-d805eb353b43" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 210 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "a106ec3a-cd57-4920-872d-7d4fecd276bf" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "a106ec3a-cd57-4920-872d-7d4fecd276bf" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "a106ec3a-cd57-4920-872d-7d4fecd276bf" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", - "motionApplyRotation" : false, - "motionEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "elementName" : "New Track Head Point", - "tags" : [ - - ], - "elementGuid" : { - "value" : "6a03f945-5ff9-4648-8031-feb26d0c8330" - }, - "attachedElementGuid" : { - "value" : "9ee0274d-58a6-4877-be70-d805eb353b43" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "6a03f945-5ff9-4648-8031-feb26d0c8330" - } - },{ - "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", - "visibleTimeLength" : { - "animatedFloatList" : [ - { - "startValue" : 0.5, - "endValue" : 0.5, - "startTime" : 0, - "endTime" : 20, - "animationCurveType" : 0 - } - ] - }, - "enableTimes" : { - "animatedBoolList" : [ - { - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 1 - } - ] - }, - "enableProcessTime" : 0.99, - "headSize" : 0, - "headRotateSpeed" : { - "animatedFloatList" : [ - - ] - }, - "isStatic" : false, - "themeBundleName" : "departure_to_multiverse", - "objectName" : "DTM_Trail", - "elementName" : "trail", - "tags" : [ - - ], - "elementGuid" : { - "value" : "834bf2b0-84f4-4721-85f5-baccefcb1fcd" - }, - "attachedElementGuid" : { - "value" : "6a03f945-5ff9-4648-8031-feb26d0c8330" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 2, - "y" : 2, - "z" : 2 - }, - "attachedElementGuid" : { - "value" : "834bf2b0-84f4-4721-85f5-baccefcb1fcd" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "834bf2b0-84f4-4721-85f5-baccefcb1fcd" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 0.206075191, - "g" : 0.619557559, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : true, - "originalEmissionColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "originalEmissionIntensity" : 2, - "attachedElementGuid" : { - "value" : "834bf2b0-84f4-4721-85f5-baccefcb1fcd" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", - "elementName" : "rain_1", - "tags" : [ - - ], - "elementGuid" : { - "value" : "eac7d4c9-3406-4371-9197-8da247e9c38f" - }, - "attachedElementGuid" : { - "value" : "00ab3fe4-d3e9-43ca-971c-7a8ebb0bf16d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 9, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "eac7d4c9-3406-4371-9197-8da247e9c38f" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "eac7d4c9-3406-4371-9197-8da247e9c38f" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", - "trackSpaceType" : 0, - "trackSamplingType" : 0, - "isClosed" : false, - "isShowingDisplay" : false, - "attachedElementGuid" : { - "value" : "eac7d4c9-3406-4371-9197-8da247e9c38f" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", - "trackStartTime" : 21.12, - "trackEndTime" : 25.08, - "visibleTrackTimeLength" : 1, - "animationCurveType" : 0, - "attachedElementGuid" : { - "value" : "eac7d4c9-3406-4371-9197-8da247e9c38f" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "836d44f9-86e6-45ce-b104-d533fe2547a0" - }, - "attachedElementGuid" : { - "value" : "eac7d4c9-3406-4371-9197-8da247e9c38f" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : -1, - "y" : 10, - "z" : 225 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "836d44f9-86e6-45ce-b104-d533fe2547a0" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "836d44f9-86e6-45ce-b104-d533fe2547a0" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "836d44f9-86e6-45ce-b104-d533fe2547a0" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "b0cf3020-c6f0-4130-a505-a7e352b4515c" - }, - "attachedElementGuid" : { - "value" : "eac7d4c9-3406-4371-9197-8da247e9c38f" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 225 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "b0cf3020-c6f0-4130-a505-a7e352b4515c" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "b0cf3020-c6f0-4130-a505-a7e352b4515c" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "b0cf3020-c6f0-4130-a505-a7e352b4515c" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", - "motionApplyRotation" : false, - "motionEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "elementName" : "New Track Head Point", - "tags" : [ - - ], - "elementGuid" : { - "value" : "78b17b9c-a255-4d7d-a2a4-85b4288b6f4e" - }, - "attachedElementGuid" : { - "value" : "eac7d4c9-3406-4371-9197-8da247e9c38f" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "78b17b9c-a255-4d7d-a2a4-85b4288b6f4e" - } - },{ - "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", - "visibleTimeLength" : { - "animatedFloatList" : [ - { - "startValue" : 0.5, - "endValue" : 0.5, - "startTime" : 0, - "endTime" : 20, - "animationCurveType" : 0 - } - ] - }, - "enableTimes" : { - "animatedBoolList" : [ - { - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 1 - } - ] - }, - "enableProcessTime" : 0.99, - "headSize" : 0, - "headRotateSpeed" : { - "animatedFloatList" : [ - - ] - }, - "isStatic" : false, - "themeBundleName" : "departure_to_multiverse", - "objectName" : "DTM_Trail", - "elementName" : "trail", - "tags" : [ - - ], - "elementGuid" : { - "value" : "3418ad22-367d-4a3d-89ed-9d9411889fa5" - }, - "attachedElementGuid" : { - "value" : "78b17b9c-a255-4d7d-a2a4-85b4288b6f4e" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 2, - "y" : 2, - "z" : 2 - }, - "attachedElementGuid" : { - "value" : "3418ad22-367d-4a3d-89ed-9d9411889fa5" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "3418ad22-367d-4a3d-89ed-9d9411889fa5" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 0.206075191, - "g" : 0.619557559, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : true, - "originalEmissionColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "originalEmissionIntensity" : 2, - "attachedElementGuid" : { - "value" : "3418ad22-367d-4a3d-89ed-9d9411889fa5" - } },{ "__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp", - "elementName" : "Ripple", + "elementName" : "Ripple(0,0,14)", "tags" : [ ], @@ -34687,7 +29988,7 @@ ], "elementGuid" : { - "value" : "41700089-f32e-48e4-991d-8348c3bc88ea" + "value" : "d69b1c65-c681-4e99-8152-4676c199af8c" }, "attachedElementGuid" : { "value" : "3b1c3745-90ec-4439-a291-bff5973357db" @@ -34710,7 +30011,7 @@ "z" : 1 }, "attachedElementGuid" : { - "value" : "41700089-f32e-48e4-991d-8348c3bc88ea" + "value" : "d69b1c65-c681-4e99-8152-4676c199af8c" } },{ "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", @@ -34749,7 +30050,7 @@ ] }, "attachedElementGuid" : { - "value" : "41700089-f32e-48e4-991d-8348c3bc88ea" + "value" : "d69b1c65-c681-4e99-8152-4676c199af8c" } },{ "__type" : "Ichni.RhythmGame.Beatmap.TimeEffectsCollection_BM,Assembly-CSharp", @@ -34759,7 +30060,7 @@ ], "elementGuid" : { - "value" : "ec45ed05-a682-4ec3-9a90-c70b9828b1ca" + "value" : "eb5ec1d3-dffd-40d2-acd4-2214f5b39fd7" }, "attachedElementGuid" : { "value" : "3b1c3745-90ec-4439-a291-bff5973357db" @@ -34782,7 +30083,7 @@ "z" : 1 }, "attachedElementGuid" : { - "value" : "ec45ed05-a682-4ec3-9a90-c70b9828b1ca" + "value" : "eb5ec1d3-dffd-40d2-acd4-2214f5b39fd7" } },{ "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", @@ -34821,7 +30122,7 @@ ] }, "attachedElementGuid" : { - "value" : "ec45ed05-a682-4ec3-9a90-c70b9828b1ca" + "value" : "eb5ec1d3-dffd-40d2-acd4-2214f5b39fd7" } },{ "__type" : "Ichni.RhythmGame.Beatmap.TimeEffectsCollection_BM,Assembly-CSharp", @@ -34831,7 +30132,7 @@ ], "elementGuid" : { - "value" : "aac50752-2c5f-433d-85de-b18c380b33c0" + "value" : "3b4b47ac-ec4f-4d48-a901-cd29cd57ae7a" }, "attachedElementGuid" : { "value" : "3b1c3745-90ec-4439-a291-bff5973357db" @@ -34854,7 +30155,7 @@ "z" : 1 }, "attachedElementGuid" : { - "value" : "aac50752-2c5f-433d-85de-b18c380b33c0" + "value" : "3b4b47ac-ec4f-4d48-a901-cd29cd57ae7a" } },{ "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", @@ -34893,7 +30194,7 @@ ] }, "attachedElementGuid" : { - "value" : "aac50752-2c5f-433d-85de-b18c380b33c0" + "value" : "3b4b47ac-ec4f-4d48-a901-cd29cd57ae7a" } },{ "__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp", @@ -34937,8 +30238,8 @@ } },{ "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", - "exactJudgeTime" : 32.0100327, - "elementName" : "New Tap", + "exactJudgeTime" : 32.01, + "elementName" : "Tap (32.01003)", "tags" : [ ], @@ -34992,7 +30293,7 @@ } },{ "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", - "isHighlighted" : false, + "isHighlighted" : true, "themeBundleName" : "departure_to_multiverse", "objectName" : "DTM_NoteVisualTap", "elementName" : "New Note Visual", @@ -35269,7 +30570,7 @@ "originalPosition" : { "x" : 0, "y" : 0, - "z" : 727.5 + "z" : 1447.5 }, "originalEulerAngles" : { "x" : 0, @@ -35313,4775 +30614,7 @@ } },{ "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", - "elementName" : "rain_2", - "tags" : [ - - ], - "elementGuid" : { - "value" : "0252aa18-7038-4244-a1ba-2f1d238fdf44" - }, - "attachedElementGuid" : { - "value" : "00ab3fe4-d3e9-43ca-971c-7a8ebb0bf16d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 10, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "0252aa18-7038-4244-a1ba-2f1d238fdf44" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "0252aa18-7038-4244-a1ba-2f1d238fdf44" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", - "trackSpaceType" : 0, - "trackSamplingType" : 0, - "isClosed" : false, - "isShowingDisplay" : false, - "attachedElementGuid" : { - "value" : "0252aa18-7038-4244-a1ba-2f1d238fdf44" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", - "trackStartTime" : 16.17, - "trackEndTime" : 20.13, - "visibleTrackTimeLength" : 1, - "animationCurveType" : 0, - "attachedElementGuid" : { - "value" : "0252aa18-7038-4244-a1ba-2f1d238fdf44" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "3a34ccbd-a80d-4144-b3fd-9bbe59c64360" - }, - "attachedElementGuid" : { - "value" : "0252aa18-7038-4244-a1ba-2f1d238fdf44" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : -1, - "y" : 10, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "3a34ccbd-a80d-4144-b3fd-9bbe59c64360" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "3a34ccbd-a80d-4144-b3fd-9bbe59c64360" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "3a34ccbd-a80d-4144-b3fd-9bbe59c64360" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "e3212645-b6c8-40a6-a7eb-6c718029e0fa" - }, - "attachedElementGuid" : { - "value" : "0252aa18-7038-4244-a1ba-2f1d238fdf44" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "e3212645-b6c8-40a6-a7eb-6c718029e0fa" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "e3212645-b6c8-40a6-a7eb-6c718029e0fa" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "e3212645-b6c8-40a6-a7eb-6c718029e0fa" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", - "motionApplyRotation" : false, - "motionEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "elementName" : "New Track Head Point", - "tags" : [ - - ], - "elementGuid" : { - "value" : "e864fa66-3461-4bfa-9367-412912bf0064" - }, - "attachedElementGuid" : { - "value" : "0252aa18-7038-4244-a1ba-2f1d238fdf44" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "e864fa66-3461-4bfa-9367-412912bf0064" - } - },{ - "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", - "visibleTimeLength" : { - "animatedFloatList" : [ - { - "startValue" : 0.5, - "endValue" : 0.5, - "startTime" : 0, - "endTime" : 20, - "animationCurveType" : 0 - } - ] - }, - "enableTimes" : { - "animatedBoolList" : [ - { - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 1 - } - ] - }, - "enableProcessTime" : 0.99, - "headSize" : 0, - "headRotateSpeed" : { - "animatedFloatList" : [ - - ] - }, - "isStatic" : false, - "themeBundleName" : "departure_to_multiverse", - "objectName" : "DTM_Trail", - "elementName" : "trail", - "tags" : [ - - ], - "elementGuid" : { - "value" : "ec4bc40c-776f-426d-b3ac-b53c4033c6ba" - }, - "attachedElementGuid" : { - "value" : "e864fa66-3461-4bfa-9367-412912bf0064" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 2, - "y" : 2, - "z" : 2 - }, - "attachedElementGuid" : { - "value" : "ec4bc40c-776f-426d-b3ac-b53c4033c6ba" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "ec4bc40c-776f-426d-b3ac-b53c4033c6ba" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 0.206075191, - "g" : 0.619557559, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : true, - "originalEmissionColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "originalEmissionIntensity" : 2, - "attachedElementGuid" : { - "value" : "ec4bc40c-776f-426d-b3ac-b53c4033c6ba" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", - "elementName" : "rain_2", - "tags" : [ - - ], - "elementGuid" : { - "value" : "93039f46-4361-44b9-bf1a-fd88db99350d" - }, - "attachedElementGuid" : { - "value" : "00ab3fe4-d3e9-43ca-971c-7a8ebb0bf16d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : -7, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "93039f46-4361-44b9-bf1a-fd88db99350d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "93039f46-4361-44b9-bf1a-fd88db99350d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", - "trackSpaceType" : 0, - "trackSamplingType" : 0, - "isClosed" : false, - "isShowingDisplay" : false, - "attachedElementGuid" : { - "value" : "93039f46-4361-44b9-bf1a-fd88db99350d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", - "trackStartTime" : 16.5, - "trackEndTime" : 20.46, - "visibleTrackTimeLength" : 1, - "animationCurveType" : 0, - "attachedElementGuid" : { - "value" : "93039f46-4361-44b9-bf1a-fd88db99350d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "03dee78f-ed01-4d2e-b7e1-723067b3c4bc" - }, - "attachedElementGuid" : { - "value" : "93039f46-4361-44b9-bf1a-fd88db99350d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : -1, - "y" : 10, - "z" : 15 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "03dee78f-ed01-4d2e-b7e1-723067b3c4bc" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "03dee78f-ed01-4d2e-b7e1-723067b3c4bc" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "03dee78f-ed01-4d2e-b7e1-723067b3c4bc" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "0223b9ee-64fb-48ae-8265-fe919b5c641f" - }, - "attachedElementGuid" : { - "value" : "93039f46-4361-44b9-bf1a-fd88db99350d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 15 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "0223b9ee-64fb-48ae-8265-fe919b5c641f" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "0223b9ee-64fb-48ae-8265-fe919b5c641f" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "0223b9ee-64fb-48ae-8265-fe919b5c641f" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", - "motionApplyRotation" : false, - "motionEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "elementName" : "New Track Head Point", - "tags" : [ - - ], - "elementGuid" : { - "value" : "bf1a8f4b-4908-464f-a4fa-45d08f94ff5f" - }, - "attachedElementGuid" : { - "value" : "93039f46-4361-44b9-bf1a-fd88db99350d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "bf1a8f4b-4908-464f-a4fa-45d08f94ff5f" - } - },{ - "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", - "visibleTimeLength" : { - "animatedFloatList" : [ - { - "startValue" : 0.5, - "endValue" : 0.5, - "startTime" : 0, - "endTime" : 20, - "animationCurveType" : 0 - } - ] - }, - "enableTimes" : { - "animatedBoolList" : [ - { - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 1 - } - ] - }, - "enableProcessTime" : 0.99, - "headSize" : 0, - "headRotateSpeed" : { - "animatedFloatList" : [ - - ] - }, - "isStatic" : false, - "themeBundleName" : "departure_to_multiverse", - "objectName" : "DTM_Trail", - "elementName" : "trail", - "tags" : [ - - ], - "elementGuid" : { - "value" : "60a934c5-08b3-4f2f-865b-1de60fa0ae35" - }, - "attachedElementGuid" : { - "value" : "bf1a8f4b-4908-464f-a4fa-45d08f94ff5f" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 2, - "y" : 2, - "z" : 2 - }, - "attachedElementGuid" : { - "value" : "60a934c5-08b3-4f2f-865b-1de60fa0ae35" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "60a934c5-08b3-4f2f-865b-1de60fa0ae35" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 0.206075191, - "g" : 0.619557559, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : true, - "originalEmissionColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "originalEmissionIntensity" : 2, - "attachedElementGuid" : { - "value" : "60a934c5-08b3-4f2f-865b-1de60fa0ae35" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", - "elementName" : "rain_2", - "tags" : [ - - ], - "elementGuid" : { - "value" : "3a809e06-5df1-46b8-90a5-6c71232a63b7" - }, - "attachedElementGuid" : { - "value" : "00ab3fe4-d3e9-43ca-971c-7a8ebb0bf16d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 7, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "3a809e06-5df1-46b8-90a5-6c71232a63b7" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "3a809e06-5df1-46b8-90a5-6c71232a63b7" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", - "trackSpaceType" : 0, - "trackSamplingType" : 0, - "isClosed" : false, - "isShowingDisplay" : false, - "attachedElementGuid" : { - "value" : "3a809e06-5df1-46b8-90a5-6c71232a63b7" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", - "trackStartTime" : 16.83, - "trackEndTime" : 20.789999, - "visibleTrackTimeLength" : 1, - "animationCurveType" : 0, - "attachedElementGuid" : { - "value" : "3a809e06-5df1-46b8-90a5-6c71232a63b7" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "2f7fb419-1678-48d5-9a01-d3eecbb55d5e" - }, - "attachedElementGuid" : { - "value" : "3a809e06-5df1-46b8-90a5-6c71232a63b7" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : -1, - "y" : 10, - "z" : 30 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "2f7fb419-1678-48d5-9a01-d3eecbb55d5e" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "2f7fb419-1678-48d5-9a01-d3eecbb55d5e" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "2f7fb419-1678-48d5-9a01-d3eecbb55d5e" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "da8ea2c5-e17c-4b7d-80b3-85f61bf0fb6c" - }, - "attachedElementGuid" : { - "value" : "3a809e06-5df1-46b8-90a5-6c71232a63b7" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 30 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "da8ea2c5-e17c-4b7d-80b3-85f61bf0fb6c" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "da8ea2c5-e17c-4b7d-80b3-85f61bf0fb6c" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "da8ea2c5-e17c-4b7d-80b3-85f61bf0fb6c" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", - "motionApplyRotation" : false, - "motionEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "elementName" : "New Track Head Point", - "tags" : [ - - ], - "elementGuid" : { - "value" : "ed6a56c8-6805-4d00-9c39-112b1fd95c68" - }, - "attachedElementGuid" : { - "value" : "3a809e06-5df1-46b8-90a5-6c71232a63b7" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "ed6a56c8-6805-4d00-9c39-112b1fd95c68" - } - },{ - "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", - "visibleTimeLength" : { - "animatedFloatList" : [ - { - "startValue" : 0.5, - "endValue" : 0.5, - "startTime" : 0, - "endTime" : 20, - "animationCurveType" : 0 - } - ] - }, - "enableTimes" : { - "animatedBoolList" : [ - { - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 1 - } - ] - }, - "enableProcessTime" : 0.99, - "headSize" : 0, - "headRotateSpeed" : { - "animatedFloatList" : [ - - ] - }, - "isStatic" : false, - "themeBundleName" : "departure_to_multiverse", - "objectName" : "DTM_Trail", - "elementName" : "trail", - "tags" : [ - - ], - "elementGuid" : { - "value" : "628e1e2e-0db0-46e8-99e8-bf2f37002a69" - }, - "attachedElementGuid" : { - "value" : "ed6a56c8-6805-4d00-9c39-112b1fd95c68" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 2, - "y" : 2, - "z" : 2 - }, - "attachedElementGuid" : { - "value" : "628e1e2e-0db0-46e8-99e8-bf2f37002a69" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "628e1e2e-0db0-46e8-99e8-bf2f37002a69" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 0.206075191, - "g" : 0.619557559, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : true, - "originalEmissionColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "originalEmissionIntensity" : 2, - "attachedElementGuid" : { - "value" : "628e1e2e-0db0-46e8-99e8-bf2f37002a69" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", - "elementName" : "rain_2", - "tags" : [ - - ], - "elementGuid" : { - "value" : "24898078-f55f-448e-89ed-43ab313327f4" - }, - "attachedElementGuid" : { - "value" : "00ab3fe4-d3e9-43ca-971c-7a8ebb0bf16d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 10, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "24898078-f55f-448e-89ed-43ab313327f4" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "24898078-f55f-448e-89ed-43ab313327f4" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", - "trackSpaceType" : 0, - "trackSamplingType" : 0, - "isClosed" : false, - "isShowingDisplay" : false, - "attachedElementGuid" : { - "value" : "24898078-f55f-448e-89ed-43ab313327f4" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", - "trackStartTime" : 17.16, - "trackEndTime" : 21.1199989, - "visibleTrackTimeLength" : 1, - "animationCurveType" : 0, - "attachedElementGuid" : { - "value" : "24898078-f55f-448e-89ed-43ab313327f4" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "2dfa83f0-3cb9-41fe-9330-46a8d4ef75e3" - }, - "attachedElementGuid" : { - "value" : "24898078-f55f-448e-89ed-43ab313327f4" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : -1, - "y" : 10, - "z" : 45 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "2dfa83f0-3cb9-41fe-9330-46a8d4ef75e3" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "2dfa83f0-3cb9-41fe-9330-46a8d4ef75e3" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "2dfa83f0-3cb9-41fe-9330-46a8d4ef75e3" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "056d035e-0e50-4510-aa60-0e8ed948f045" - }, - "attachedElementGuid" : { - "value" : "24898078-f55f-448e-89ed-43ab313327f4" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 45 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "056d035e-0e50-4510-aa60-0e8ed948f045" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "056d035e-0e50-4510-aa60-0e8ed948f045" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "056d035e-0e50-4510-aa60-0e8ed948f045" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", - "motionApplyRotation" : false, - "motionEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "elementName" : "New Track Head Point", - "tags" : [ - - ], - "elementGuid" : { - "value" : "826d0088-661a-4f64-8b1d-49f951c3a53a" - }, - "attachedElementGuid" : { - "value" : "24898078-f55f-448e-89ed-43ab313327f4" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "826d0088-661a-4f64-8b1d-49f951c3a53a" - } - },{ - "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", - "visibleTimeLength" : { - "animatedFloatList" : [ - { - "startValue" : 0.5, - "endValue" : 0.5, - "startTime" : 0, - "endTime" : 20, - "animationCurveType" : 0 - } - ] - }, - "enableTimes" : { - "animatedBoolList" : [ - { - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 1 - } - ] - }, - "enableProcessTime" : 0.99, - "headSize" : 0, - "headRotateSpeed" : { - "animatedFloatList" : [ - - ] - }, - "isStatic" : false, - "themeBundleName" : "departure_to_multiverse", - "objectName" : "DTM_Trail", - "elementName" : "trail", - "tags" : [ - - ], - "elementGuid" : { - "value" : "48847510-7974-41f1-8824-284f4bcd26ad" - }, - "attachedElementGuid" : { - "value" : "826d0088-661a-4f64-8b1d-49f951c3a53a" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 2, - "y" : 2, - "z" : 2 - }, - "attachedElementGuid" : { - "value" : "48847510-7974-41f1-8824-284f4bcd26ad" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "48847510-7974-41f1-8824-284f4bcd26ad" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 0.206075191, - "g" : 0.619557559, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : true, - "originalEmissionColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "originalEmissionIntensity" : 2, - "attachedElementGuid" : { - "value" : "48847510-7974-41f1-8824-284f4bcd26ad" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", - "elementName" : "rain_2", - "tags" : [ - - ], - "elementGuid" : { - "value" : "0cbe7bc5-cd28-4e64-bc07-5fd5969c363b" - }, - "attachedElementGuid" : { - "value" : "00ab3fe4-d3e9-43ca-971c-7a8ebb0bf16d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : -5, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "0cbe7bc5-cd28-4e64-bc07-5fd5969c363b" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "0cbe7bc5-cd28-4e64-bc07-5fd5969c363b" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", - "trackSpaceType" : 0, - "trackSamplingType" : 0, - "isClosed" : false, - "isShowingDisplay" : false, - "attachedElementGuid" : { - "value" : "0cbe7bc5-cd28-4e64-bc07-5fd5969c363b" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", - "trackStartTime" : 17.49, - "trackEndTime" : 21.4499989, - "visibleTrackTimeLength" : 1, - "animationCurveType" : 0, - "attachedElementGuid" : { - "value" : "0cbe7bc5-cd28-4e64-bc07-5fd5969c363b" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "19a453a8-c405-42e8-b90c-44c91c9602ad" - }, - "attachedElementGuid" : { - "value" : "0cbe7bc5-cd28-4e64-bc07-5fd5969c363b" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : -1, - "y" : 10, - "z" : 60 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "19a453a8-c405-42e8-b90c-44c91c9602ad" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "19a453a8-c405-42e8-b90c-44c91c9602ad" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "19a453a8-c405-42e8-b90c-44c91c9602ad" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "d2bb9335-56fc-4a89-bf52-ff2008cf6bc9" - }, - "attachedElementGuid" : { - "value" : "0cbe7bc5-cd28-4e64-bc07-5fd5969c363b" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 60 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "d2bb9335-56fc-4a89-bf52-ff2008cf6bc9" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "d2bb9335-56fc-4a89-bf52-ff2008cf6bc9" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "d2bb9335-56fc-4a89-bf52-ff2008cf6bc9" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", - "motionApplyRotation" : false, - "motionEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "elementName" : "New Track Head Point", - "tags" : [ - - ], - "elementGuid" : { - "value" : "2896f203-f1ae-4889-b0ed-4d9ba5225ada" - }, - "attachedElementGuid" : { - "value" : "0cbe7bc5-cd28-4e64-bc07-5fd5969c363b" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "2896f203-f1ae-4889-b0ed-4d9ba5225ada" - } - },{ - "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", - "visibleTimeLength" : { - "animatedFloatList" : [ - { - "startValue" : 0.5, - "endValue" : 0.5, - "startTime" : 0, - "endTime" : 20, - "animationCurveType" : 0 - } - ] - }, - "enableTimes" : { - "animatedBoolList" : [ - { - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 1 - } - ] - }, - "enableProcessTime" : 0.99, - "headSize" : 0, - "headRotateSpeed" : { - "animatedFloatList" : [ - - ] - }, - "isStatic" : false, - "themeBundleName" : "departure_to_multiverse", - "objectName" : "DTM_Trail", - "elementName" : "trail", - "tags" : [ - - ], - "elementGuid" : { - "value" : "e6f1d2df-956e-42c5-b2d7-db4c9d7e1cce" - }, - "attachedElementGuid" : { - "value" : "2896f203-f1ae-4889-b0ed-4d9ba5225ada" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 2, - "y" : 2, - "z" : 2 - }, - "attachedElementGuid" : { - "value" : "e6f1d2df-956e-42c5-b2d7-db4c9d7e1cce" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "e6f1d2df-956e-42c5-b2d7-db4c9d7e1cce" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 0.206075191, - "g" : 0.619557559, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : true, - "originalEmissionColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "originalEmissionIntensity" : 2, - "attachedElementGuid" : { - "value" : "e6f1d2df-956e-42c5-b2d7-db4c9d7e1cce" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", - "elementName" : "rain_2", - "tags" : [ - - ], - "elementGuid" : { - "value" : "815da626-40b4-42dd-84ee-0cef68af242e" - }, - "attachedElementGuid" : { - "value" : "00ab3fe4-d3e9-43ca-971c-7a8ebb0bf16d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 4, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "815da626-40b4-42dd-84ee-0cef68af242e" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "815da626-40b4-42dd-84ee-0cef68af242e" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", - "trackSpaceType" : 0, - "trackSamplingType" : 0, - "isClosed" : false, - "isShowingDisplay" : false, - "attachedElementGuid" : { - "value" : "815da626-40b4-42dd-84ee-0cef68af242e" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", - "trackStartTime" : 17.82, - "trackEndTime" : 21.7799988, - "visibleTrackTimeLength" : 1, - "animationCurveType" : 0, - "attachedElementGuid" : { - "value" : "815da626-40b4-42dd-84ee-0cef68af242e" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "e4551c1a-3bb6-4f8f-be9e-005a6422d9c9" - }, - "attachedElementGuid" : { - "value" : "815da626-40b4-42dd-84ee-0cef68af242e" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : -1, - "y" : 10, - "z" : 75 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "e4551c1a-3bb6-4f8f-be9e-005a6422d9c9" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "e4551c1a-3bb6-4f8f-be9e-005a6422d9c9" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "e4551c1a-3bb6-4f8f-be9e-005a6422d9c9" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "6e4e1ce4-8fe8-40b8-8a96-437caa69e778" - }, - "attachedElementGuid" : { - "value" : "815da626-40b4-42dd-84ee-0cef68af242e" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 75 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "6e4e1ce4-8fe8-40b8-8a96-437caa69e778" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "6e4e1ce4-8fe8-40b8-8a96-437caa69e778" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "6e4e1ce4-8fe8-40b8-8a96-437caa69e778" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", - "motionApplyRotation" : false, - "motionEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "elementName" : "New Track Head Point", - "tags" : [ - - ], - "elementGuid" : { - "value" : "bb8574c5-6080-43d4-afdc-5ab11277fd9d" - }, - "attachedElementGuid" : { - "value" : "815da626-40b4-42dd-84ee-0cef68af242e" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "bb8574c5-6080-43d4-afdc-5ab11277fd9d" - } - },{ - "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", - "visibleTimeLength" : { - "animatedFloatList" : [ - { - "startValue" : 0.5, - "endValue" : 0.5, - "startTime" : 0, - "endTime" : 20, - "animationCurveType" : 0 - } - ] - }, - "enableTimes" : { - "animatedBoolList" : [ - { - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 1 - } - ] - }, - "enableProcessTime" : 0.99, - "headSize" : 0, - "headRotateSpeed" : { - "animatedFloatList" : [ - - ] - }, - "isStatic" : false, - "themeBundleName" : "departure_to_multiverse", - "objectName" : "DTM_Trail", - "elementName" : "trail", - "tags" : [ - - ], - "elementGuid" : { - "value" : "2e886476-cb66-41ef-8d86-b8a01f7a361f" - }, - "attachedElementGuid" : { - "value" : "bb8574c5-6080-43d4-afdc-5ab11277fd9d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 2, - "y" : 2, - "z" : 2 - }, - "attachedElementGuid" : { - "value" : "2e886476-cb66-41ef-8d86-b8a01f7a361f" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "2e886476-cb66-41ef-8d86-b8a01f7a361f" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 0.206075191, - "g" : 0.619557559, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : true, - "originalEmissionColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "originalEmissionIntensity" : 2, - "attachedElementGuid" : { - "value" : "2e886476-cb66-41ef-8d86-b8a01f7a361f" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", - "elementName" : "rain_2", - "tags" : [ - - ], - "elementGuid" : { - "value" : "12e6ee24-7073-4518-ac94-113e61397c13" - }, - "attachedElementGuid" : { - "value" : "00ab3fe4-d3e9-43ca-971c-7a8ebb0bf16d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : -14, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "12e6ee24-7073-4518-ac94-113e61397c13" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "12e6ee24-7073-4518-ac94-113e61397c13" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", - "trackSpaceType" : 0, - "trackSamplingType" : 0, - "isClosed" : false, - "isShowingDisplay" : false, - "attachedElementGuid" : { - "value" : "12e6ee24-7073-4518-ac94-113e61397c13" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", - "trackStartTime" : 18.15, - "trackEndTime" : 22.1099987, - "visibleTrackTimeLength" : 1, - "animationCurveType" : 0, - "attachedElementGuid" : { - "value" : "12e6ee24-7073-4518-ac94-113e61397c13" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "f8d33012-4da6-47aa-b8c4-98321bd90f8d" - }, - "attachedElementGuid" : { - "value" : "12e6ee24-7073-4518-ac94-113e61397c13" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : -1, - "y" : 10, - "z" : 90 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "f8d33012-4da6-47aa-b8c4-98321bd90f8d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "f8d33012-4da6-47aa-b8c4-98321bd90f8d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "f8d33012-4da6-47aa-b8c4-98321bd90f8d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "3d623e57-982c-4200-b503-35d8b107b4b5" - }, - "attachedElementGuid" : { - "value" : "12e6ee24-7073-4518-ac94-113e61397c13" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 90 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "3d623e57-982c-4200-b503-35d8b107b4b5" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "3d623e57-982c-4200-b503-35d8b107b4b5" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "3d623e57-982c-4200-b503-35d8b107b4b5" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", - "motionApplyRotation" : false, - "motionEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "elementName" : "New Track Head Point", - "tags" : [ - - ], - "elementGuid" : { - "value" : "78d29635-6b68-4d69-9ca4-f3c56039ec8e" - }, - "attachedElementGuid" : { - "value" : "12e6ee24-7073-4518-ac94-113e61397c13" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "78d29635-6b68-4d69-9ca4-f3c56039ec8e" - } - },{ - "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", - "visibleTimeLength" : { - "animatedFloatList" : [ - { - "startValue" : 0.5, - "endValue" : 0.5, - "startTime" : 0, - "endTime" : 20, - "animationCurveType" : 0 - } - ] - }, - "enableTimes" : { - "animatedBoolList" : [ - { - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 1 - } - ] - }, - "enableProcessTime" : 0.99, - "headSize" : 0, - "headRotateSpeed" : { - "animatedFloatList" : [ - - ] - }, - "isStatic" : false, - "themeBundleName" : "departure_to_multiverse", - "objectName" : "DTM_Trail", - "elementName" : "trail", - "tags" : [ - - ], - "elementGuid" : { - "value" : "4787dcf7-b174-42e2-85d0-bcf88fc38ac1" - }, - "attachedElementGuid" : { - "value" : "78d29635-6b68-4d69-9ca4-f3c56039ec8e" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 2, - "y" : 2, - "z" : 2 - }, - "attachedElementGuid" : { - "value" : "4787dcf7-b174-42e2-85d0-bcf88fc38ac1" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "4787dcf7-b174-42e2-85d0-bcf88fc38ac1" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 0.206075191, - "g" : 0.619557559, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : true, - "originalEmissionColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "originalEmissionIntensity" : 2, - "attachedElementGuid" : { - "value" : "4787dcf7-b174-42e2-85d0-bcf88fc38ac1" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", - "elementName" : "rain_2", - "tags" : [ - - ], - "elementGuid" : { - "value" : "03191518-046c-4a53-bad4-b42dcd17f4bd" - }, - "attachedElementGuid" : { - "value" : "00ab3fe4-d3e9-43ca-971c-7a8ebb0bf16d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : -9, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "03191518-046c-4a53-bad4-b42dcd17f4bd" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "03191518-046c-4a53-bad4-b42dcd17f4bd" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", - "trackSpaceType" : 0, - "trackSamplingType" : 0, - "isClosed" : false, - "isShowingDisplay" : false, - "attachedElementGuid" : { - "value" : "03191518-046c-4a53-bad4-b42dcd17f4bd" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", - "trackStartTime" : 18.48, - "trackEndTime" : 22.4399986, - "visibleTrackTimeLength" : 1, - "animationCurveType" : 0, - "attachedElementGuid" : { - "value" : "03191518-046c-4a53-bad4-b42dcd17f4bd" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "ae65c99c-ac32-441c-9b0f-6989ed7c4007" - }, - "attachedElementGuid" : { - "value" : "03191518-046c-4a53-bad4-b42dcd17f4bd" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : -1, - "y" : 10, - "z" : 105 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "ae65c99c-ac32-441c-9b0f-6989ed7c4007" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "ae65c99c-ac32-441c-9b0f-6989ed7c4007" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "ae65c99c-ac32-441c-9b0f-6989ed7c4007" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "d0d2838a-2ee8-4b7d-b1c9-1220844e3184" - }, - "attachedElementGuid" : { - "value" : "03191518-046c-4a53-bad4-b42dcd17f4bd" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 105 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "d0d2838a-2ee8-4b7d-b1c9-1220844e3184" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "d0d2838a-2ee8-4b7d-b1c9-1220844e3184" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "d0d2838a-2ee8-4b7d-b1c9-1220844e3184" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", - "motionApplyRotation" : false, - "motionEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "elementName" : "New Track Head Point", - "tags" : [ - - ], - "elementGuid" : { - "value" : "ceb31b91-926b-4f98-a0cd-b97668778289" - }, - "attachedElementGuid" : { - "value" : "03191518-046c-4a53-bad4-b42dcd17f4bd" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "ceb31b91-926b-4f98-a0cd-b97668778289" - } - },{ - "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", - "visibleTimeLength" : { - "animatedFloatList" : [ - { - "startValue" : 0.5, - "endValue" : 0.5, - "startTime" : 0, - "endTime" : 20, - "animationCurveType" : 0 - } - ] - }, - "enableTimes" : { - "animatedBoolList" : [ - { - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 1 - } - ] - }, - "enableProcessTime" : 0.99, - "headSize" : 0, - "headRotateSpeed" : { - "animatedFloatList" : [ - - ] - }, - "isStatic" : false, - "themeBundleName" : "departure_to_multiverse", - "objectName" : "DTM_Trail", - "elementName" : "trail", - "tags" : [ - - ], - "elementGuid" : { - "value" : "6ef54806-3461-4b88-85cf-4d2f94c8d536" - }, - "attachedElementGuid" : { - "value" : "ceb31b91-926b-4f98-a0cd-b97668778289" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 2, - "y" : 2, - "z" : 2 - }, - "attachedElementGuid" : { - "value" : "6ef54806-3461-4b88-85cf-4d2f94c8d536" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "6ef54806-3461-4b88-85cf-4d2f94c8d536" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 0.206075191, - "g" : 0.619557559, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : true, - "originalEmissionColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "originalEmissionIntensity" : 2, - "attachedElementGuid" : { - "value" : "6ef54806-3461-4b88-85cf-4d2f94c8d536" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", - "elementName" : "rain_2", - "tags" : [ - - ], - "elementGuid" : { - "value" : "c966c7a3-3db6-4f2d-8788-5fa15f0f1fb1" - }, - "attachedElementGuid" : { - "value" : "00ab3fe4-d3e9-43ca-971c-7a8ebb0bf16d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 4, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "c966c7a3-3db6-4f2d-8788-5fa15f0f1fb1" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "c966c7a3-3db6-4f2d-8788-5fa15f0f1fb1" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", - "trackSpaceType" : 0, - "trackSamplingType" : 0, - "isClosed" : false, - "isShowingDisplay" : false, - "attachedElementGuid" : { - "value" : "c966c7a3-3db6-4f2d-8788-5fa15f0f1fb1" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", - "trackStartTime" : 18.81, - "trackEndTime" : 22.7699986, - "visibleTrackTimeLength" : 1, - "animationCurveType" : 0, - "attachedElementGuid" : { - "value" : "c966c7a3-3db6-4f2d-8788-5fa15f0f1fb1" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "d35fe42c-7649-4836-8e75-27b1b215fdfc" - }, - "attachedElementGuid" : { - "value" : "c966c7a3-3db6-4f2d-8788-5fa15f0f1fb1" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : -1, - "y" : 10, - "z" : 120 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "d35fe42c-7649-4836-8e75-27b1b215fdfc" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "d35fe42c-7649-4836-8e75-27b1b215fdfc" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "d35fe42c-7649-4836-8e75-27b1b215fdfc" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "ddcbc483-e4a0-43ff-8658-c51963a221ec" - }, - "attachedElementGuid" : { - "value" : "c966c7a3-3db6-4f2d-8788-5fa15f0f1fb1" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 120 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "ddcbc483-e4a0-43ff-8658-c51963a221ec" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "ddcbc483-e4a0-43ff-8658-c51963a221ec" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "ddcbc483-e4a0-43ff-8658-c51963a221ec" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", - "motionApplyRotation" : false, - "motionEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "elementName" : "New Track Head Point", - "tags" : [ - - ], - "elementGuid" : { - "value" : "d21ed13c-1688-4adf-8809-3ac2c5f7aadc" - }, - "attachedElementGuid" : { - "value" : "c966c7a3-3db6-4f2d-8788-5fa15f0f1fb1" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "d21ed13c-1688-4adf-8809-3ac2c5f7aadc" - } - },{ - "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", - "visibleTimeLength" : { - "animatedFloatList" : [ - { - "startValue" : 0.5, - "endValue" : 0.5, - "startTime" : 0, - "endTime" : 20, - "animationCurveType" : 0 - } - ] - }, - "enableTimes" : { - "animatedBoolList" : [ - { - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 1 - } - ] - }, - "enableProcessTime" : 0.99, - "headSize" : 0, - "headRotateSpeed" : { - "animatedFloatList" : [ - - ] - }, - "isStatic" : false, - "themeBundleName" : "departure_to_multiverse", - "objectName" : "DTM_Trail", - "elementName" : "trail", - "tags" : [ - - ], - "elementGuid" : { - "value" : "3e558f22-8ace-4be5-a7fa-24f070d86bdf" - }, - "attachedElementGuid" : { - "value" : "d21ed13c-1688-4adf-8809-3ac2c5f7aadc" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 2, - "y" : 2, - "z" : 2 - }, - "attachedElementGuid" : { - "value" : "3e558f22-8ace-4be5-a7fa-24f070d86bdf" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "3e558f22-8ace-4be5-a7fa-24f070d86bdf" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 0.206075191, - "g" : 0.619557559, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : true, - "originalEmissionColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "originalEmissionIntensity" : 2, - "attachedElementGuid" : { - "value" : "3e558f22-8ace-4be5-a7fa-24f070d86bdf" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", - "elementName" : "rain_2", - "tags" : [ - - ], - "elementGuid" : { - "value" : "28e817c6-aae4-445a-99de-03a724b7bfc2" - }, - "attachedElementGuid" : { - "value" : "00ab3fe4-d3e9-43ca-971c-7a8ebb0bf16d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 4, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "28e817c6-aae4-445a-99de-03a724b7bfc2" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "28e817c6-aae4-445a-99de-03a724b7bfc2" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", - "trackSpaceType" : 0, - "trackSamplingType" : 0, - "isClosed" : false, - "isShowingDisplay" : false, - "attachedElementGuid" : { - "value" : "28e817c6-aae4-445a-99de-03a724b7bfc2" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", - "trackStartTime" : 19.14, - "trackEndTime" : 23.0999985, - "visibleTrackTimeLength" : 1, - "animationCurveType" : 0, - "attachedElementGuid" : { - "value" : "28e817c6-aae4-445a-99de-03a724b7bfc2" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "e7323480-1f5c-498d-85c1-1ab4858069ee" - }, - "attachedElementGuid" : { - "value" : "28e817c6-aae4-445a-99de-03a724b7bfc2" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : -1, - "y" : 10, - "z" : 135 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "e7323480-1f5c-498d-85c1-1ab4858069ee" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "e7323480-1f5c-498d-85c1-1ab4858069ee" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "e7323480-1f5c-498d-85c1-1ab4858069ee" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "29c820e8-e62f-45e6-93c7-bb1b5b70b9b7" - }, - "attachedElementGuid" : { - "value" : "28e817c6-aae4-445a-99de-03a724b7bfc2" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 135 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "29c820e8-e62f-45e6-93c7-bb1b5b70b9b7" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "29c820e8-e62f-45e6-93c7-bb1b5b70b9b7" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "29c820e8-e62f-45e6-93c7-bb1b5b70b9b7" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", - "motionApplyRotation" : false, - "motionEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "elementName" : "New Track Head Point", - "tags" : [ - - ], - "elementGuid" : { - "value" : "d18b41d1-11b9-4366-9709-d297b3eb3b3b" - }, - "attachedElementGuid" : { - "value" : "28e817c6-aae4-445a-99de-03a724b7bfc2" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "d18b41d1-11b9-4366-9709-d297b3eb3b3b" - } - },{ - "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", - "visibleTimeLength" : { - "animatedFloatList" : [ - { - "startValue" : 0.5, - "endValue" : 0.5, - "startTime" : 0, - "endTime" : 20, - "animationCurveType" : 0 - } - ] - }, - "enableTimes" : { - "animatedBoolList" : [ - { - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 1 - } - ] - }, - "enableProcessTime" : 0.99, - "headSize" : 0, - "headRotateSpeed" : { - "animatedFloatList" : [ - - ] - }, - "isStatic" : false, - "themeBundleName" : "departure_to_multiverse", - "objectName" : "DTM_Trail", - "elementName" : "trail", - "tags" : [ - - ], - "elementGuid" : { - "value" : "8494bc7b-bc0b-467e-a957-b81952da264c" - }, - "attachedElementGuid" : { - "value" : "d18b41d1-11b9-4366-9709-d297b3eb3b3b" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 2, - "y" : 2, - "z" : 2 - }, - "attachedElementGuid" : { - "value" : "8494bc7b-bc0b-467e-a957-b81952da264c" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "8494bc7b-bc0b-467e-a957-b81952da264c" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 0.206075191, - "g" : 0.619557559, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : true, - "originalEmissionColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "originalEmissionIntensity" : 2, - "attachedElementGuid" : { - "value" : "8494bc7b-bc0b-467e-a957-b81952da264c" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", - "elementName" : "rain_2", - "tags" : [ - - ], - "elementGuid" : { - "value" : "ad5a0d4f-5472-4e5f-a775-2bdd2028d28c" - }, - "attachedElementGuid" : { - "value" : "00ab3fe4-d3e9-43ca-971c-7a8ebb0bf16d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : -17, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "ad5a0d4f-5472-4e5f-a775-2bdd2028d28c" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "ad5a0d4f-5472-4e5f-a775-2bdd2028d28c" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", - "trackSpaceType" : 0, - "trackSamplingType" : 0, - "isClosed" : false, - "isShowingDisplay" : false, - "attachedElementGuid" : { - "value" : "ad5a0d4f-5472-4e5f-a775-2bdd2028d28c" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", - "trackStartTime" : 19.4700012, - "trackEndTime" : 23.43, - "visibleTrackTimeLength" : 1, - "animationCurveType" : 0, - "attachedElementGuid" : { - "value" : "ad5a0d4f-5472-4e5f-a775-2bdd2028d28c" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "c08749dc-f111-45ed-bb54-b2457ed08d4e" - }, - "attachedElementGuid" : { - "value" : "ad5a0d4f-5472-4e5f-a775-2bdd2028d28c" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : -1, - "y" : 10, - "z" : 150 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "c08749dc-f111-45ed-bb54-b2457ed08d4e" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "c08749dc-f111-45ed-bb54-b2457ed08d4e" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "c08749dc-f111-45ed-bb54-b2457ed08d4e" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "a433149a-8ff9-43aa-9423-d7292d0d3ae7" - }, - "attachedElementGuid" : { - "value" : "ad5a0d4f-5472-4e5f-a775-2bdd2028d28c" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 150 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "a433149a-8ff9-43aa-9423-d7292d0d3ae7" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "a433149a-8ff9-43aa-9423-d7292d0d3ae7" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "a433149a-8ff9-43aa-9423-d7292d0d3ae7" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", - "motionApplyRotation" : false, - "motionEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "elementName" : "New Track Head Point", - "tags" : [ - - ], - "elementGuid" : { - "value" : "74f2f268-9ce0-4af1-9873-003fe4e74659" - }, - "attachedElementGuid" : { - "value" : "ad5a0d4f-5472-4e5f-a775-2bdd2028d28c" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "74f2f268-9ce0-4af1-9873-003fe4e74659" - } - },{ - "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", - "visibleTimeLength" : { - "animatedFloatList" : [ - { - "startValue" : 0.5, - "endValue" : 0.5, - "startTime" : 0, - "endTime" : 20, - "animationCurveType" : 0 - } - ] - }, - "enableTimes" : { - "animatedBoolList" : [ - { - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 1 - } - ] - }, - "enableProcessTime" : 0.99, - "headSize" : 0, - "headRotateSpeed" : { - "animatedFloatList" : [ - - ] - }, - "isStatic" : false, - "themeBundleName" : "departure_to_multiverse", - "objectName" : "DTM_Trail", - "elementName" : "trail", - "tags" : [ - - ], - "elementGuid" : { - "value" : "71f107ff-cb55-42f6-82c0-f22f57657416" - }, - "attachedElementGuid" : { - "value" : "74f2f268-9ce0-4af1-9873-003fe4e74659" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 2, - "y" : 2, - "z" : 2 - }, - "attachedElementGuid" : { - "value" : "71f107ff-cb55-42f6-82c0-f22f57657416" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "71f107ff-cb55-42f6-82c0-f22f57657416" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 0.206075191, - "g" : 0.619557559, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : true, - "originalEmissionColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "originalEmissionIntensity" : 2, - "attachedElementGuid" : { - "value" : "71f107ff-cb55-42f6-82c0-f22f57657416" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", - "elementName" : "rain_2", - "tags" : [ - - ], - "elementGuid" : { - "value" : "2986fa1c-0794-443f-b6f4-dd338f3e6319" - }, - "attachedElementGuid" : { - "value" : "00ab3fe4-d3e9-43ca-971c-7a8ebb0bf16d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : -9, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "2986fa1c-0794-443f-b6f4-dd338f3e6319" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "2986fa1c-0794-443f-b6f4-dd338f3e6319" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", - "trackSpaceType" : 0, - "trackSamplingType" : 0, - "isClosed" : false, - "isShowingDisplay" : false, - "attachedElementGuid" : { - "value" : "2986fa1c-0794-443f-b6f4-dd338f3e6319" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", - "trackStartTime" : 19.8, - "trackEndTime" : 23.7599983, - "visibleTrackTimeLength" : 1, - "animationCurveType" : 0, - "attachedElementGuid" : { - "value" : "2986fa1c-0794-443f-b6f4-dd338f3e6319" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "b0afb4a9-fca2-4adc-b538-80b5b1c3aabc" - }, - "attachedElementGuid" : { - "value" : "2986fa1c-0794-443f-b6f4-dd338f3e6319" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : -1, - "y" : 10, - "z" : 165 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "b0afb4a9-fca2-4adc-b538-80b5b1c3aabc" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "b0afb4a9-fca2-4adc-b538-80b5b1c3aabc" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "b0afb4a9-fca2-4adc-b538-80b5b1c3aabc" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "5c28092b-faef-4526-aa33-d7cd3b9a378f" - }, - "attachedElementGuid" : { - "value" : "2986fa1c-0794-443f-b6f4-dd338f3e6319" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 165 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "5c28092b-faef-4526-aa33-d7cd3b9a378f" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "5c28092b-faef-4526-aa33-d7cd3b9a378f" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "5c28092b-faef-4526-aa33-d7cd3b9a378f" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", - "motionApplyRotation" : false, - "motionEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "elementName" : "New Track Head Point", - "tags" : [ - - ], - "elementGuid" : { - "value" : "a54ecd6b-8c4b-4e32-8d1a-97887da75fe1" - }, - "attachedElementGuid" : { - "value" : "2986fa1c-0794-443f-b6f4-dd338f3e6319" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "a54ecd6b-8c4b-4e32-8d1a-97887da75fe1" - } - },{ - "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", - "visibleTimeLength" : { - "animatedFloatList" : [ - { - "startValue" : 0.5, - "endValue" : 0.5, - "startTime" : 0, - "endTime" : 20, - "animationCurveType" : 0 - } - ] - }, - "enableTimes" : { - "animatedBoolList" : [ - { - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 1 - } - ] - }, - "enableProcessTime" : 0.99, - "headSize" : 0, - "headRotateSpeed" : { - "animatedFloatList" : [ - - ] - }, - "isStatic" : false, - "themeBundleName" : "departure_to_multiverse", - "objectName" : "DTM_Trail", - "elementName" : "trail", - "tags" : [ - - ], - "elementGuid" : { - "value" : "e3291b92-4d24-40ec-984d-154163c26064" - }, - "attachedElementGuid" : { - "value" : "a54ecd6b-8c4b-4e32-8d1a-97887da75fe1" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 2, - "y" : 2, - "z" : 2 - }, - "attachedElementGuid" : { - "value" : "e3291b92-4d24-40ec-984d-154163c26064" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "e3291b92-4d24-40ec-984d-154163c26064" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 0.206075191, - "g" : 0.619557559, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : true, - "originalEmissionColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "originalEmissionIntensity" : 2, - "attachedElementGuid" : { - "value" : "e3291b92-4d24-40ec-984d-154163c26064" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", - "elementName" : "rain_2", - "tags" : [ - - ], - "elementGuid" : { - "value" : "d36aedf0-f7ec-4dbb-8857-acf14ea957a5" - }, - "attachedElementGuid" : { - "value" : "00ab3fe4-d3e9-43ca-971c-7a8ebb0bf16d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 5, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "d36aedf0-f7ec-4dbb-8857-acf14ea957a5" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "d36aedf0-f7ec-4dbb-8857-acf14ea957a5" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", - "trackSpaceType" : 0, - "trackSamplingType" : 0, - "isClosed" : false, - "isShowingDisplay" : false, - "attachedElementGuid" : { - "value" : "d36aedf0-f7ec-4dbb-8857-acf14ea957a5" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", - "trackStartTime" : 20.1300011, - "trackEndTime" : 24.09, - "visibleTrackTimeLength" : 1, - "animationCurveType" : 0, - "attachedElementGuid" : { - "value" : "d36aedf0-f7ec-4dbb-8857-acf14ea957a5" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "76ae6914-d839-4e4e-b86c-8e7d3953d9b5" - }, - "attachedElementGuid" : { - "value" : "d36aedf0-f7ec-4dbb-8857-acf14ea957a5" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : -1, - "y" : 10, - "z" : 180 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "76ae6914-d839-4e4e-b86c-8e7d3953d9b5" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "76ae6914-d839-4e4e-b86c-8e7d3953d9b5" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "76ae6914-d839-4e4e-b86c-8e7d3953d9b5" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "791e407e-98ac-43e0-9a38-bc4734c8a5bf" - }, - "attachedElementGuid" : { - "value" : "d36aedf0-f7ec-4dbb-8857-acf14ea957a5" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 180 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "791e407e-98ac-43e0-9a38-bc4734c8a5bf" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "791e407e-98ac-43e0-9a38-bc4734c8a5bf" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "791e407e-98ac-43e0-9a38-bc4734c8a5bf" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", - "motionApplyRotation" : false, - "motionEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "elementName" : "New Track Head Point", - "tags" : [ - - ], - "elementGuid" : { - "value" : "1e8fae44-3404-47a4-b6db-a3be3ceb7390" - }, - "attachedElementGuid" : { - "value" : "d36aedf0-f7ec-4dbb-8857-acf14ea957a5" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "1e8fae44-3404-47a4-b6db-a3be3ceb7390" - } - },{ - "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", - "visibleTimeLength" : { - "animatedFloatList" : [ - { - "startValue" : 0.5, - "endValue" : 0.5, - "startTime" : 0, - "endTime" : 20, - "animationCurveType" : 0 - } - ] - }, - "enableTimes" : { - "animatedBoolList" : [ - { - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 1 - } - ] - }, - "enableProcessTime" : 0.99, - "headSize" : 0, - "headRotateSpeed" : { - "animatedFloatList" : [ - - ] - }, - "isStatic" : false, - "themeBundleName" : "departure_to_multiverse", - "objectName" : "DTM_Trail", - "elementName" : "trail", - "tags" : [ - - ], - "elementGuid" : { - "value" : "ec2f7ab6-196e-4733-beb8-d127a972420c" - }, - "attachedElementGuid" : { - "value" : "1e8fae44-3404-47a4-b6db-a3be3ceb7390" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 2, - "y" : 2, - "z" : 2 - }, - "attachedElementGuid" : { - "value" : "ec2f7ab6-196e-4733-beb8-d127a972420c" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "ec2f7ab6-196e-4733-beb8-d127a972420c" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 0.206075191, - "g" : 0.619557559, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : true, - "originalEmissionColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "originalEmissionIntensity" : 2, - "attachedElementGuid" : { - "value" : "ec2f7ab6-196e-4733-beb8-d127a972420c" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", - "elementName" : "rain_2", - "tags" : [ - - ], - "elementGuid" : { - "value" : "cbeeb49b-dd27-441a-b103-3640903fa9b7" - }, - "attachedElementGuid" : { - "value" : "00ab3fe4-d3e9-43ca-971c-7a8ebb0bf16d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : -6.7, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "cbeeb49b-dd27-441a-b103-3640903fa9b7" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "cbeeb49b-dd27-441a-b103-3640903fa9b7" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", - "trackSpaceType" : 0, - "trackSamplingType" : 0, - "isClosed" : false, - "isShowingDisplay" : false, - "attachedElementGuid" : { - "value" : "cbeeb49b-dd27-441a-b103-3640903fa9b7" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", - "trackStartTime" : 20.46, - "trackEndTime" : 24.4199982, - "visibleTrackTimeLength" : 1, - "animationCurveType" : 0, - "attachedElementGuid" : { - "value" : "cbeeb49b-dd27-441a-b103-3640903fa9b7" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "079a1144-90e3-40b4-b03f-9d4b1bfb2379" - }, - "attachedElementGuid" : { - "value" : "cbeeb49b-dd27-441a-b103-3640903fa9b7" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : -1, - "y" : 10, - "z" : 195 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "079a1144-90e3-40b4-b03f-9d4b1bfb2379" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "079a1144-90e3-40b4-b03f-9d4b1bfb2379" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "079a1144-90e3-40b4-b03f-9d4b1bfb2379" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "bb2fe062-70da-4916-9755-ae66d718984d" - }, - "attachedElementGuid" : { - "value" : "cbeeb49b-dd27-441a-b103-3640903fa9b7" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 195 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "bb2fe062-70da-4916-9755-ae66d718984d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "bb2fe062-70da-4916-9755-ae66d718984d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "bb2fe062-70da-4916-9755-ae66d718984d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", - "motionApplyRotation" : false, - "motionEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "elementName" : "New Track Head Point", - "tags" : [ - - ], - "elementGuid" : { - "value" : "25d63b60-5660-472c-9b4b-1c16a00084be" - }, - "attachedElementGuid" : { - "value" : "cbeeb49b-dd27-441a-b103-3640903fa9b7" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "25d63b60-5660-472c-9b4b-1c16a00084be" - } - },{ - "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", - "visibleTimeLength" : { - "animatedFloatList" : [ - { - "startValue" : 0.5, - "endValue" : 0.5, - "startTime" : 0, - "endTime" : 20, - "animationCurveType" : 0 - } - ] - }, - "enableTimes" : { - "animatedBoolList" : [ - { - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 1 - } - ] - }, - "enableProcessTime" : 0.99, - "headSize" : 0, - "headRotateSpeed" : { - "animatedFloatList" : [ - - ] - }, - "isStatic" : false, - "themeBundleName" : "departure_to_multiverse", - "objectName" : "DTM_Trail", - "elementName" : "trail", - "tags" : [ - - ], - "elementGuid" : { - "value" : "2fff91ab-74af-4eae-bf72-e9eb7cc07d82" - }, - "attachedElementGuid" : { - "value" : "25d63b60-5660-472c-9b4b-1c16a00084be" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 2, - "y" : 2, - "z" : 2 - }, - "attachedElementGuid" : { - "value" : "2fff91ab-74af-4eae-bf72-e9eb7cc07d82" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "2fff91ab-74af-4eae-bf72-e9eb7cc07d82" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 0.206075191, - "g" : 0.619557559, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : true, - "originalEmissionColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "originalEmissionIntensity" : 2, - "attachedElementGuid" : { - "value" : "2fff91ab-74af-4eae-bf72-e9eb7cc07d82" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", - "elementName" : "rain_2", - "tags" : [ - - ], - "elementGuid" : { - "value" : "d507dc3c-059d-4385-8891-c23aa343f7a8" - }, - "attachedElementGuid" : { - "value" : "00ab3fe4-d3e9-43ca-971c-7a8ebb0bf16d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 7, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "d507dc3c-059d-4385-8891-c23aa343f7a8" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "d507dc3c-059d-4385-8891-c23aa343f7a8" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", - "trackSpaceType" : 0, - "trackSamplingType" : 0, - "isClosed" : false, - "isShowingDisplay" : false, - "attachedElementGuid" : { - "value" : "d507dc3c-059d-4385-8891-c23aa343f7a8" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", - "trackStartTime" : 20.79, - "trackEndTime" : 24.75, - "visibleTrackTimeLength" : 1, - "animationCurveType" : 0, - "attachedElementGuid" : { - "value" : "d507dc3c-059d-4385-8891-c23aa343f7a8" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "0391ca6b-aac0-4014-818e-12328edf0308" - }, - "attachedElementGuid" : { - "value" : "d507dc3c-059d-4385-8891-c23aa343f7a8" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : -1, - "y" : 10, - "z" : 210 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "0391ca6b-aac0-4014-818e-12328edf0308" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "0391ca6b-aac0-4014-818e-12328edf0308" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "0391ca6b-aac0-4014-818e-12328edf0308" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "29dea9bb-6c3f-4445-902e-bb615fe249d6" - }, - "attachedElementGuid" : { - "value" : "d507dc3c-059d-4385-8891-c23aa343f7a8" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 210 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "29dea9bb-6c3f-4445-902e-bb615fe249d6" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "29dea9bb-6c3f-4445-902e-bb615fe249d6" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "29dea9bb-6c3f-4445-902e-bb615fe249d6" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", - "motionApplyRotation" : false, - "motionEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "elementName" : "New Track Head Point", - "tags" : [ - - ], - "elementGuid" : { - "value" : "4a42e77f-cd04-4126-a158-cd5e3ab063cb" - }, - "attachedElementGuid" : { - "value" : "d507dc3c-059d-4385-8891-c23aa343f7a8" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "4a42e77f-cd04-4126-a158-cd5e3ab063cb" - } - },{ - "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", - "visibleTimeLength" : { - "animatedFloatList" : [ - { - "startValue" : 0.5, - "endValue" : 0.5, - "startTime" : 0, - "endTime" : 20, - "animationCurveType" : 0 - } - ] - }, - "enableTimes" : { - "animatedBoolList" : [ - { - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 1 - } - ] - }, - "enableProcessTime" : 0.99, - "headSize" : 0, - "headRotateSpeed" : { - "animatedFloatList" : [ - - ] - }, - "isStatic" : false, - "themeBundleName" : "departure_to_multiverse", - "objectName" : "DTM_Trail", - "elementName" : "trail", - "tags" : [ - - ], - "elementGuid" : { - "value" : "72f1d4e7-1e85-42e4-bee7-ced8d28df0a4" - }, - "attachedElementGuid" : { - "value" : "4a42e77f-cd04-4126-a158-cd5e3ab063cb" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 2, - "y" : 2, - "z" : 2 - }, - "attachedElementGuid" : { - "value" : "72f1d4e7-1e85-42e4-bee7-ced8d28df0a4" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "72f1d4e7-1e85-42e4-bee7-ced8d28df0a4" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 0.206075191, - "g" : 0.619557559, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : true, - "originalEmissionColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "originalEmissionIntensity" : 2, - "attachedElementGuid" : { - "value" : "72f1d4e7-1e85-42e4-bee7-ced8d28df0a4" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", - "elementName" : "rain_2", - "tags" : [ - - ], - "elementGuid" : { - "value" : "c8c0f056-d685-4892-9cfa-714bbd6de5f4" - }, - "attachedElementGuid" : { - "value" : "00ab3fe4-d3e9-43ca-971c-7a8ebb0bf16d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : -14, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "c8c0f056-d685-4892-9cfa-714bbd6de5f4" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "c8c0f056-d685-4892-9cfa-714bbd6de5f4" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", - "trackSpaceType" : 0, - "trackSamplingType" : 0, - "isClosed" : false, - "isShowingDisplay" : false, - "attachedElementGuid" : { - "value" : "c8c0f056-d685-4892-9cfa-714bbd6de5f4" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", - "trackStartTime" : 21.12, - "trackEndTime" : 25.08, - "visibleTrackTimeLength" : 1, - "animationCurveType" : 0, - "attachedElementGuid" : { - "value" : "c8c0f056-d685-4892-9cfa-714bbd6de5f4" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "2cc19257-8cf6-4ac5-9107-8e2ec1ce5ec3" - }, - "attachedElementGuid" : { - "value" : "c8c0f056-d685-4892-9cfa-714bbd6de5f4" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : -1, - "y" : 10, - "z" : 225 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "2cc19257-8cf6-4ac5-9107-8e2ec1ce5ec3" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "2cc19257-8cf6-4ac5-9107-8e2ec1ce5ec3" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "2cc19257-8cf6-4ac5-9107-8e2ec1ce5ec3" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", - "isShowingSphere" : false, - "elementName" : "New Path Node", - "tags" : [ - - ], - "elementGuid" : { - "value" : "cf9ba57a-2b6b-404a-b8ef-3aeeb9ed050d" - }, - "attachedElementGuid" : { - "value" : "c8c0f056-d685-4892-9cfa-714bbd6de5f4" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 225 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 1, - "y" : 1, - "z" : 1 - }, - "attachedElementGuid" : { - "value" : "cf9ba57a-2b6b-404a-b8ef-3aeeb9ed050d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "cf9ba57a-2b6b-404a-b8ef-3aeeb9ed050d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : false, - "originalEmissionColor" : { - "r" : 0, - "g" : 0, - "b" : 0, - "a" : 1 - }, - "originalEmissionIntensity" : 0, - "attachedElementGuid" : { - "value" : "cf9ba57a-2b6b-404a-b8ef-3aeeb9ed050d" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", - "motionApplyRotation" : false, - "motionEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "elementName" : "New Track Head Point", - "tags" : [ - - ], - "elementGuid" : { - "value" : "6ed7ed50-571a-4271-ac13-0c233d0d7dd4" - }, - "attachedElementGuid" : { - "value" : "c8c0f056-d685-4892-9cfa-714bbd6de5f4" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "6ed7ed50-571a-4271-ac13-0c233d0d7dd4" - } - },{ - "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", - "visibleTimeLength" : { - "animatedFloatList" : [ - { - "startValue" : 0.5, - "endValue" : 0.5, - "startTime" : 0, - "endTime" : 20, - "animationCurveType" : 0 - } - ] - }, - "enableTimes" : { - "animatedBoolList" : [ - { - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 0 - },{ - "value" : false, - "time" : 1 - } - ] - }, - "enableProcessTime" : 0.99, - "headSize" : 0, - "headRotateSpeed" : { - "animatedFloatList" : [ - - ] - }, - "isStatic" : false, - "themeBundleName" : "departure_to_multiverse", - "objectName" : "DTM_Trail", - "elementName" : "trail", - "tags" : [ - - ], - "elementGuid" : { - "value" : "ddd96c08-400b-483f-b5fb-39644af5e4d6" - }, - "attachedElementGuid" : { - "value" : "6ed7ed50-571a-4271-ac13-0c233d0d7dd4" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", - "originalPosition" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalEulerAngles" : { - "x" : 0, - "y" : 0, - "z" : 0 - }, - "originalScale" : { - "x" : 2, - "y" : 2, - "z" : 2 - }, - "attachedElementGuid" : { - "value" : "ddd96c08-400b-483f-b5fb-39644af5e4d6" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", - "isOverridingDuration" : false, - "startTime" : -32767, - "endTime" : 32767, - "attachedElementGuid" : { - "value" : "ddd96c08-400b-483f-b5fb-39644af5e4d6" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", - "originalBaseColor" : { - "r" : 0.206075191, - "g" : 0.619557559, - "b" : 1, - "a" : 1 - }, - "emissionEnabled" : true, - "originalEmissionColor" : { - "r" : 1, - "g" : 1, - "b" : 1, - "a" : 1 - }, - "originalEmissionIntensity" : 2, - "attachedElementGuid" : { - "value" : "ddd96c08-400b-483f-b5fb-39644af5e4d6" - } - },{ - "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", - "elementName" : "New Track", + "elementName" : "r0 ", "tags" : [ ], @@ -40124,7 +30657,7 @@ "trackSpaceType" : 0, "trackSamplingType" : 0, "isClosed" : false, - "isShowingDisplay" : true, + "isShowingDisplay" : false, "attachedElementGuid" : { "value" : "470998d0-5ba8-4af9-8c4c-e95b5d55b32f" } @@ -40153,8 +30686,8 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", "originalPosition" : { - "x" : 0, - "y" : 0, + "x" : -3, + "y" : 30, "z" : 0 }, "originalEulerAngles" : { @@ -40215,7 +30748,7 @@ "originalPosition" : { "x" : 0, "y" : 0, - "z" : 15 + "z" : 0 }, "originalEulerAngles" : { "x" : 0, @@ -40260,22 +30793,22 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.ParticleTracker_BM,Assembly-CSharp", "prewarm" : false, - "playTime" : 0, - "stopTime" : 16.17, + "playTime" : 0.5, + "stopTime" : 20, "is3D" : true, - "width" : 10, + "width" : 40, "extendDirection" : { - "x" : 1, - "y" : 1, + "x" : 2, + "y" : 0, "z" : 1 }, - "density" : 10, - "lifeTime" : 5, - "isAutoOrient" : true, + "density" : 12, + "lifeTime" : 3, + "isAutoOrient" : false, "particleRotation" : { - "x" : 90, + "x" : 0, "y" : 0, - "z" : 0 + "z" : -10 }, "materialThemeBundleName" : "basic", "materialName" : "Basic_Track_Segments", @@ -40292,8 +30825,8 @@ },{ "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", "originalBaseColor" : { - "r" : 1, - "g" : 1, + "r" : 0.3858937, + "g" : 0.4940961, "b" : 1, "a" : 1 }, @@ -40304,10 +30837,160814 @@ "b" : 1, "a" : 1 }, - "originalEmissionIntensity" : 0, + "originalEmissionIntensity" : 1, "attachedElementGuid" : { "value" : "90746d6f-ed79-4c6f-bc7b-7fa3f2a0a415" } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "r1", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b429a7d5-b702-47e3-b635-067c5c24c4ca" + }, + "attachedElementGuid" : { + "value" : "00ab3fe4-d3e9-43ca-971c-7a8ebb0bf16d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 180 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b429a7d5-b702-47e3-b635-067c5c24c4ca" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b429a7d5-b702-47e3-b635-067c5c24c4ca" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 0, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "b429a7d5-b702-47e3-b635-067c5c24c4ca" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 0, + "trackEndTime" : 3, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "b429a7d5-b702-47e3-b635-067c5c24c4ca" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3ace68c0-beec-4745-b3f6-438481ab47de" + }, + "attachedElementGuid" : { + "value" : "b429a7d5-b702-47e3-b635-067c5c24c4ca" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -3, + "y" : 30, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3ace68c0-beec-4745-b3f6-438481ab47de" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3ace68c0-beec-4745-b3f6-438481ab47de" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3ace68c0-beec-4745-b3f6-438481ab47de" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "25a59d59-2004-4afa-a8d7-3269675700f9" + }, + "attachedElementGuid" : { + "value" : "b429a7d5-b702-47e3-b635-067c5c24c4ca" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "25a59d59-2004-4afa-a8d7-3269675700f9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "25a59d59-2004-4afa-a8d7-3269675700f9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "25a59d59-2004-4afa-a8d7-3269675700f9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ParticleTracker_BM,Assembly-CSharp", + "prewarm" : false, + "playTime" : 13, + "stopTime" : 24, + "is3D" : true, + "width" : 40, + "extendDirection" : { + "x" : 2, + "y" : 0, + "z" : 8 + }, + "density" : 30, + "lifeTime" : 3, + "isAutoOrient" : false, + "particleRotation" : { + "x" : 0, + "y" : 0, + "z" : -10 + }, + "materialThemeBundleName" : "basic", + "materialName" : "Basic_Track_Segments", + "elementName" : "New Particle Tracker", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c795258b-272d-458f-a780-b51c3017c378" + }, + "attachedElementGuid" : { + "value" : "b429a7d5-b702-47e3-b635-067c5c24c4ca" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0.3858937, + "g" : 0.4940961, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "c795258b-272d-458f-a780-b51c3017c378" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "r2", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a773398c-6025-44b7-a67b-14370c9ec5fc" + }, + "attachedElementGuid" : { + "value" : "00ab3fe4-d3e9-43ca-971c-7a8ebb0bf16d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 540 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a773398c-6025-44b7-a67b-14370c9ec5fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a773398c-6025-44b7-a67b-14370c9ec5fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 0, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "a773398c-6025-44b7-a67b-14370c9ec5fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 0, + "trackEndTime" : 3, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "a773398c-6025-44b7-a67b-14370c9ec5fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "75b9f6ff-a8ef-4986-9411-9576372aa15a" + }, + "attachedElementGuid" : { + "value" : "a773398c-6025-44b7-a67b-14370c9ec5fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -3, + "y" : 30, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "75b9f6ff-a8ef-4986-9411-9576372aa15a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "75b9f6ff-a8ef-4986-9411-9576372aa15a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "75b9f6ff-a8ef-4986-9411-9576372aa15a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1acb88d3-0b68-4f6c-8b39-bfdf63673ec4" + }, + "attachedElementGuid" : { + "value" : "a773398c-6025-44b7-a67b-14370c9ec5fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "1acb88d3-0b68-4f6c-8b39-bfdf63673ec4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1acb88d3-0b68-4f6c-8b39-bfdf63673ec4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "1acb88d3-0b68-4f6c-8b39-bfdf63673ec4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ParticleTracker_BM,Assembly-CSharp", + "prewarm" : false, + "playTime" : 20, + "stopTime" : 31, + "is3D" : true, + "width" : 40, + "extendDirection" : { + "x" : 2, + "y" : 0, + "z" : 8 + }, + "density" : 30, + "lifeTime" : 3, + "isAutoOrient" : false, + "particleRotation" : { + "x" : 0, + "y" : 0, + "z" : -10 + }, + "materialThemeBundleName" : "basic", + "materialName" : "Basic_Track_Segments", + "elementName" : "New Particle Tracker", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bb71ed62-b67c-40a8-8a1c-0393374ee629" + }, + "attachedElementGuid" : { + "value" : "a773398c-6025-44b7-a67b-14370c9ec5fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0.3858937, + "g" : 0.4940961, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "bb71ed62-b67c-40a8-8a1c-0393374ee629" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "T1", + "tags" : [ + + ], + "elementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + }, + "attachedElementGuid" : { + "value" : "9a2ae83b-eb44-4747-acf9-60e4b230d8a6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 1, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 32.01, + "trackEndTime" : 47.85, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode0", + "tags" : [ + + ], + "elementGuid" : { + "value" : "12fc5c52-fa09-4657-8707-188bc0c29ee3" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -1.33, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "12fc5c52-fa09-4657-8707-188bc0c29ee3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "12fc5c52-fa09-4657-8707-188bc0c29ee3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "12fc5c52-fa09-4657-8707-188bc0c29ee3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode1", + "tags" : [ + + ], + "elementGuid" : { + "value" : "336faab5-2b67-4830-89d0-116ebb7a9098" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -1.5, + "y" : 0, + "z" : 45 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "336faab5-2b67-4830-89d0-116ebb7a9098" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "336faab5-2b67-4830-89d0-116ebb7a9098" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "336faab5-2b67-4830-89d0-116ebb7a9098" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode2", + "tags" : [ + + ], + "elementGuid" : { + "value" : "87938616-bd1d-4575-9588-9f9413797c9e" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -2.5, + "y" : 0, + "z" : 90 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "87938616-bd1d-4575-9588-9f9413797c9e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "87938616-bd1d-4575-9588-9f9413797c9e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "87938616-bd1d-4575-9588-9f9413797c9e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode3", + "tags" : [ + + ], + "elementGuid" : { + "value" : "85548316-fea9-4e2b-bde0-675871d58e72" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -2.5, + "y" : 0, + "z" : 135 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "85548316-fea9-4e2b-bde0-675871d58e72" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "85548316-fea9-4e2b-bde0-675871d58e72" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "85548316-fea9-4e2b-bde0-675871d58e72" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode4", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3a135de8-0c32-47db-b669-7d449af29e00" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2.5, + "y" : 0, + "z" : 180 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3a135de8-0c32-47db-b669-7d449af29e00" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3a135de8-0c32-47db-b669-7d449af29e00" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3a135de8-0c32-47db-b669-7d449af29e00" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode5", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5a3b6ff7-273b-4c76-b19d-97c2dc98c520" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 3, + "y" : 0, + "z" : 225 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5a3b6ff7-273b-4c76-b19d-97c2dc98c520" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5a3b6ff7-273b-4c76-b19d-97c2dc98c520" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5a3b6ff7-273b-4c76-b19d-97c2dc98c520" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode6", + "tags" : [ + + ], + "elementGuid" : { + "value" : "58d97df1-2d8c-4308-a309-36b871fc2c0a" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 1.5, + "y" : 0, + "z" : 270 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "58d97df1-2d8c-4308-a309-36b871fc2c0a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "58d97df1-2d8c-4308-a309-36b871fc2c0a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "58d97df1-2d8c-4308-a309-36b871fc2c0a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode7", + "tags" : [ + + ], + "elementGuid" : { + "value" : "663808e4-dec4-44f8-a8b6-f5e316f5dc18" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 315 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "663808e4-dec4-44f8-a8b6-f5e316f5dc18" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "663808e4-dec4-44f8-a8b6-f5e316f5dc18" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "663808e4-dec4-44f8-a8b6-f5e316f5dc18" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode8", + "tags" : [ + + ], + "elementGuid" : { + "value" : "35c14062-58d7-469d-bbfb-8006606dccac" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 360 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "35c14062-58d7-469d-bbfb-8006606dccac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "35c14062-58d7-469d-bbfb-8006606dccac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "35c14062-58d7-469d-bbfb-8006606dccac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode9", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5d27d42c-d5b2-417b-9ff1-38b05c6c4c9b" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -1.5, + "y" : 0, + "z" : 405 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5d27d42c-d5b2-417b-9ff1-38b05c6c4c9b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5d27d42c-d5b2-417b-9ff1-38b05c6c4c9b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5d27d42c-d5b2-417b-9ff1-38b05c6c4c9b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode10", + "tags" : [ + + ], + "elementGuid" : { + "value" : "64e1563b-f1e8-466e-9bd3-31c6200289ac" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -2.5, + "y" : 0, + "z" : 450 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "64e1563b-f1e8-466e-9bd3-31c6200289ac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "64e1563b-f1e8-466e-9bd3-31c6200289ac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "64e1563b-f1e8-466e-9bd3-31c6200289ac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode11", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c261136d-0ae7-4bcf-9d65-395d42625002" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -2.5, + "y" : 0, + "z" : 495 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c261136d-0ae7-4bcf-9d65-395d42625002" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c261136d-0ae7-4bcf-9d65-395d42625002" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c261136d-0ae7-4bcf-9d65-395d42625002" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode12", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e3d2f2f0-3f60-4206-be4d-1a7a46f5de6c" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2.5, + "y" : 0, + "z" : 540 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e3d2f2f0-3f60-4206-be4d-1a7a46f5de6c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e3d2f2f0-3f60-4206-be4d-1a7a46f5de6c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e3d2f2f0-3f60-4206-be4d-1a7a46f5de6c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode13", + "tags" : [ + + ], + "elementGuid" : { + "value" : "09f12b74-c43c-4119-8134-0f627fdee4a0" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 3, + "y" : 0, + "z" : 585 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "09f12b74-c43c-4119-8134-0f627fdee4a0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "09f12b74-c43c-4119-8134-0f627fdee4a0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "09f12b74-c43c-4119-8134-0f627fdee4a0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode14", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ef5fe9c9-d6ac-43a1-ac0d-d964cf8079a6" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 1.5, + "y" : 0, + "z" : 630 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ef5fe9c9-d6ac-43a1-ac0d-d964cf8079a6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ef5fe9c9-d6ac-43a1-ac0d-d964cf8079a6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ef5fe9c9-d6ac-43a1-ac0d-d964cf8079a6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode15", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bdd6a2f1-92dd-4508-8534-c6b8b69afae3" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -4, + "y" : 0, + "z" : 675 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "bdd6a2f1-92dd-4508-8534-c6b8b69afae3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bdd6a2f1-92dd-4508-8534-c6b8b69afae3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "bdd6a2f1-92dd-4508-8534-c6b8b69afae3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode16", + "tags" : [ + + ], + "elementGuid" : { + "value" : "43a405cb-c456-4922-b6bd-a005da0ae58e" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 1.5, + "y" : 0, + "z" : 720 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "43a405cb-c456-4922-b6bd-a005da0ae58e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "43a405cb-c456-4922-b6bd-a005da0ae58e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "43a405cb-c456-4922-b6bd-a005da0ae58e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "eff0a124-23e2-495b-8170-a2655c7e9236" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "eff0a124-23e2-495b-8170-a2655c7e9236" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 32.01 + },{ + "value" : false, + "time" : 47.85 + } + ] + }, + "enableProcessTime" : 0, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + { + "startValue" : 32.01, + "endValue" : 5, + "startTime" : 16.17, + "endTime" : 5, + "animationCurveType" : 0 + } + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9f5732b3-e73d-4cb8-81d0-55d660aa5ec2" + }, + "attachedElementGuid" : { + "value" : "eff0a124-23e2-495b-8170-a2655c7e9236" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9f5732b3-e73d-4cb8-81d0-55d660aa5ec2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9f5732b3-e73d-4cb8-81d0-55d660aa5ec2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0.3965093, + "g" : 0.497728825, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "9f5732b3-e73d-4cb8-81d0-55d660aa5ec2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "T2", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0c39cf0c-5e96-46b4-9b12-fd17161dcce8" + }, + "attachedElementGuid" : { + "value" : "9a2ae83b-eb44-4747-acf9-60e4b230d8a6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0c39cf0c-5e96-46b4-9b12-fd17161dcce8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0c39cf0c-5e96-46b4-9b12-fd17161dcce8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 1, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "0c39cf0c-5e96-46b4-9b12-fd17161dcce8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 32.01, + "trackEndTime" : 47.85, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "0c39cf0c-5e96-46b4-9b12-fd17161dcce8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode0", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cd5d0618-c151-4e1c-b71e-b88b835bdee2" + }, + "attachedElementGuid" : { + "value" : "0c39cf0c-5e96-46b4-9b12-fd17161dcce8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 1.33, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "cd5d0618-c151-4e1c-b71e-b88b835bdee2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "cd5d0618-c151-4e1c-b71e-b88b835bdee2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "cd5d0618-c151-4e1c-b71e-b88b835bdee2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode1", + "tags" : [ + + ], + "elementGuid" : { + "value" : "df19be2f-f489-4587-9b10-0ed5b8cacabf" + }, + "attachedElementGuid" : { + "value" : "0c39cf0c-5e96-46b4-9b12-fd17161dcce8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 1.5, + "y" : 0, + "z" : 45 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "df19be2f-f489-4587-9b10-0ed5b8cacabf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "df19be2f-f489-4587-9b10-0ed5b8cacabf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "df19be2f-f489-4587-9b10-0ed5b8cacabf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode2", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4b31c3b7-4bea-4911-8771-fe550d742ae3" + }, + "attachedElementGuid" : { + "value" : "0c39cf0c-5e96-46b4-9b12-fd17161dcce8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2.5, + "y" : 0, + "z" : 90 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4b31c3b7-4bea-4911-8771-fe550d742ae3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4b31c3b7-4bea-4911-8771-fe550d742ae3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4b31c3b7-4bea-4911-8771-fe550d742ae3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode3", + "tags" : [ + + ], + "elementGuid" : { + "value" : "802b1bdf-88dd-40c3-b7c9-193a6f3df4db" + }, + "attachedElementGuid" : { + "value" : "0c39cf0c-5e96-46b4-9b12-fd17161dcce8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2.5, + "y" : 0, + "z" : 135 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "802b1bdf-88dd-40c3-b7c9-193a6f3df4db" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "802b1bdf-88dd-40c3-b7c9-193a6f3df4db" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "802b1bdf-88dd-40c3-b7c9-193a6f3df4db" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode4", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c691c3ed-9091-4ca8-8364-98d8a6101018" + }, + "attachedElementGuid" : { + "value" : "0c39cf0c-5e96-46b4-9b12-fd17161dcce8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -2.5, + "y" : 0, + "z" : 180 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c691c3ed-9091-4ca8-8364-98d8a6101018" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c691c3ed-9091-4ca8-8364-98d8a6101018" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c691c3ed-9091-4ca8-8364-98d8a6101018" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode5", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f1b53468-5559-4f70-9b37-1bbad37047d7" + }, + "attachedElementGuid" : { + "value" : "0c39cf0c-5e96-46b4-9b12-fd17161dcce8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -3, + "y" : 0, + "z" : 225 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f1b53468-5559-4f70-9b37-1bbad37047d7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f1b53468-5559-4f70-9b37-1bbad37047d7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f1b53468-5559-4f70-9b37-1bbad37047d7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode6", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6cef9c25-068d-4bfd-bd9e-e1859bb2810c" + }, + "attachedElementGuid" : { + "value" : "0c39cf0c-5e96-46b4-9b12-fd17161dcce8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -1.5, + "y" : 0, + "z" : 270 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6cef9c25-068d-4bfd-bd9e-e1859bb2810c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6cef9c25-068d-4bfd-bd9e-e1859bb2810c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6cef9c25-068d-4bfd-bd9e-e1859bb2810c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode7", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e594cba1-f653-417d-92ee-411976e8ce64" + }, + "attachedElementGuid" : { + "value" : "0c39cf0c-5e96-46b4-9b12-fd17161dcce8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 315 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e594cba1-f653-417d-92ee-411976e8ce64" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e594cba1-f653-417d-92ee-411976e8ce64" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e594cba1-f653-417d-92ee-411976e8ce64" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode8", + "tags" : [ + + ], + "elementGuid" : { + "value" : "beff6cf7-77b4-4e5d-b7b6-008840a7beaa" + }, + "attachedElementGuid" : { + "value" : "0c39cf0c-5e96-46b4-9b12-fd17161dcce8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 360 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "beff6cf7-77b4-4e5d-b7b6-008840a7beaa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "beff6cf7-77b4-4e5d-b7b6-008840a7beaa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "beff6cf7-77b4-4e5d-b7b6-008840a7beaa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode9", + "tags" : [ + + ], + "elementGuid" : { + "value" : "960640a0-8908-4d8f-a3ae-50ecc07cf571" + }, + "attachedElementGuid" : { + "value" : "0c39cf0c-5e96-46b4-9b12-fd17161dcce8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 1.5, + "y" : 0, + "z" : 405 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "960640a0-8908-4d8f-a3ae-50ecc07cf571" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "960640a0-8908-4d8f-a3ae-50ecc07cf571" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "960640a0-8908-4d8f-a3ae-50ecc07cf571" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode10", + "tags" : [ + + ], + "elementGuid" : { + "value" : "732e58ac-ac70-46da-b910-74166e5fd06f" + }, + "attachedElementGuid" : { + "value" : "0c39cf0c-5e96-46b4-9b12-fd17161dcce8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2.5, + "y" : 0, + "z" : 450 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "732e58ac-ac70-46da-b910-74166e5fd06f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "732e58ac-ac70-46da-b910-74166e5fd06f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "732e58ac-ac70-46da-b910-74166e5fd06f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode11", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7b53c474-aaea-438d-9ec4-35dacafd65a1" + }, + "attachedElementGuid" : { + "value" : "0c39cf0c-5e96-46b4-9b12-fd17161dcce8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2.5, + "y" : 0, + "z" : 495 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7b53c474-aaea-438d-9ec4-35dacafd65a1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7b53c474-aaea-438d-9ec4-35dacafd65a1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "7b53c474-aaea-438d-9ec4-35dacafd65a1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode12", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d67d9884-69c6-43a8-8a12-39624778655e" + }, + "attachedElementGuid" : { + "value" : "0c39cf0c-5e96-46b4-9b12-fd17161dcce8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -2.5, + "y" : 0, + "z" : 540 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d67d9884-69c6-43a8-8a12-39624778655e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d67d9884-69c6-43a8-8a12-39624778655e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d67d9884-69c6-43a8-8a12-39624778655e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode13", + "tags" : [ + + ], + "elementGuid" : { + "value" : "903b249c-57dc-4696-9eb0-646207a1e4e9" + }, + "attachedElementGuid" : { + "value" : "0c39cf0c-5e96-46b4-9b12-fd17161dcce8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -3, + "y" : 0, + "z" : 585 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "903b249c-57dc-4696-9eb0-646207a1e4e9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "903b249c-57dc-4696-9eb0-646207a1e4e9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "903b249c-57dc-4696-9eb0-646207a1e4e9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode14", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a680b8ac-f453-4ac4-8013-bcd3d098ab53" + }, + "attachedElementGuid" : { + "value" : "0c39cf0c-5e96-46b4-9b12-fd17161dcce8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -1.5, + "y" : 0, + "z" : 630 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a680b8ac-f453-4ac4-8013-bcd3d098ab53" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a680b8ac-f453-4ac4-8013-bcd3d098ab53" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a680b8ac-f453-4ac4-8013-bcd3d098ab53" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode15", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c4c954a5-58cf-4f12-9942-ac3eb6f184e1" + }, + "attachedElementGuid" : { + "value" : "0c39cf0c-5e96-46b4-9b12-fd17161dcce8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 4, + "y" : 0, + "z" : 675 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c4c954a5-58cf-4f12-9942-ac3eb6f184e1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c4c954a5-58cf-4f12-9942-ac3eb6f184e1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c4c954a5-58cf-4f12-9942-ac3eb6f184e1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode16", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9984f0c6-126e-4078-9791-792c3bbe5e77" + }, + "attachedElementGuid" : { + "value" : "0c39cf0c-5e96-46b4-9b12-fd17161dcce8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -1.5, + "y" : 0, + "z" : 720 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9984f0c6-126e-4078-9791-792c3bbe5e77" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9984f0c6-126e-4078-9791-792c3bbe5e77" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "9984f0c6-126e-4078-9791-792c3bbe5e77" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3cab4f71-a72c-4bdf-84dd-cc96555ee5db" + }, + "attachedElementGuid" : { + "value" : "0c39cf0c-5e96-46b4-9b12-fd17161dcce8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3cab4f71-a72c-4bdf-84dd-cc96555ee5db" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 32.01 + },{ + "value" : false, + "time" : 47.85 + } + ] + }, + "enableProcessTime" : 0, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + { + "startValue" : 32.01, + "endValue" : 5, + "startTime" : 16.17, + "endTime" : 5, + "animationCurveType" : 0 + } + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8b076b19-9aa4-44c3-a0a9-8be74bcc58d0" + }, + "attachedElementGuid" : { + "value" : "3cab4f71-a72c-4bdf-84dd-cc96555ee5db" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8b076b19-9aa4-44c3-a0a9-8be74bcc58d0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8b076b19-9aa4-44c3-a0a9-8be74bcc58d0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0.3965093, + "g" : 0.497728825, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "8b076b19-9aa4-44c3-a0a9-8be74bcc58d0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp", + "elementName" : "Note_guide", + "tags" : [ + + ], + "elementGuid" : { + "value" : "02653685-b959-4739-9445-e607f304059e" + }, + "attachedElementGuid" : { + "value" : "5b3ef0bf-ccb4-420e-9e01-faf5200340c8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "02653685-b959-4739-9445-e607f304059e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "02653685-b959-4739-9445-e607f304059e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "T1", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8b2c50ee-fec1-46b6-b028-476d22e94ad4" + }, + "attachedElementGuid" : { + "value" : "02653685-b959-4739-9445-e607f304059e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8b2c50ee-fec1-46b6-b028-476d22e94ad4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8b2c50ee-fec1-46b6-b028-476d22e94ad4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 1, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "8b2c50ee-fec1-46b6-b028-476d22e94ad4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 30.51, + "trackEndTime" : 46.35, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "8b2c50ee-fec1-46b6-b028-476d22e94ad4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode0", + "tags" : [ + + ], + "elementGuid" : { + "value" : "994cbbce-9958-45df-8086-b423f5a57f39" + }, + "attachedElementGuid" : { + "value" : "8b2c50ee-fec1-46b6-b028-476d22e94ad4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -1.33, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "994cbbce-9958-45df-8086-b423f5a57f39" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "994cbbce-9958-45df-8086-b423f5a57f39" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "994cbbce-9958-45df-8086-b423f5a57f39" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode1", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bb80fcb4-8f3e-4aa8-8e83-e4dd07065eb5" + }, + "attachedElementGuid" : { + "value" : "8b2c50ee-fec1-46b6-b028-476d22e94ad4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -1.5, + "y" : 0, + "z" : 45 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "bb80fcb4-8f3e-4aa8-8e83-e4dd07065eb5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bb80fcb4-8f3e-4aa8-8e83-e4dd07065eb5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "bb80fcb4-8f3e-4aa8-8e83-e4dd07065eb5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode2", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ec67a47e-1a7e-4d4b-a16b-3ee9006f92bb" + }, + "attachedElementGuid" : { + "value" : "8b2c50ee-fec1-46b6-b028-476d22e94ad4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -2.5, + "y" : 0, + "z" : 90 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ec67a47e-1a7e-4d4b-a16b-3ee9006f92bb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ec67a47e-1a7e-4d4b-a16b-3ee9006f92bb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ec67a47e-1a7e-4d4b-a16b-3ee9006f92bb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode3", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0660bced-f59e-4d2b-8bc1-532d84c56d0a" + }, + "attachedElementGuid" : { + "value" : "8b2c50ee-fec1-46b6-b028-476d22e94ad4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -2.5, + "y" : 0, + "z" : 135 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0660bced-f59e-4d2b-8bc1-532d84c56d0a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0660bced-f59e-4d2b-8bc1-532d84c56d0a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0660bced-f59e-4d2b-8bc1-532d84c56d0a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode4", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e1a54e0d-b609-4509-9949-92e25a4e315c" + }, + "attachedElementGuid" : { + "value" : "8b2c50ee-fec1-46b6-b028-476d22e94ad4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2.5, + "y" : 0, + "z" : 180 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e1a54e0d-b609-4509-9949-92e25a4e315c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e1a54e0d-b609-4509-9949-92e25a4e315c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e1a54e0d-b609-4509-9949-92e25a4e315c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode5", + "tags" : [ + + ], + "elementGuid" : { + "value" : "605a8535-c8ce-4876-aab1-c85c552ad56f" + }, + "attachedElementGuid" : { + "value" : "8b2c50ee-fec1-46b6-b028-476d22e94ad4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 3, + "y" : 0, + "z" : 225 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "605a8535-c8ce-4876-aab1-c85c552ad56f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "605a8535-c8ce-4876-aab1-c85c552ad56f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "605a8535-c8ce-4876-aab1-c85c552ad56f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode6", + "tags" : [ + + ], + "elementGuid" : { + "value" : "babaa180-5856-4ff6-aae2-adeb4d0db0f7" + }, + "attachedElementGuid" : { + "value" : "8b2c50ee-fec1-46b6-b028-476d22e94ad4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 1.5, + "y" : 0, + "z" : 270 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "babaa180-5856-4ff6-aae2-adeb4d0db0f7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "babaa180-5856-4ff6-aae2-adeb4d0db0f7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "babaa180-5856-4ff6-aae2-adeb4d0db0f7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode7", + "tags" : [ + + ], + "elementGuid" : { + "value" : "485b5951-1781-4eb6-aef2-a9eeed2b76d7" + }, + "attachedElementGuid" : { + "value" : "8b2c50ee-fec1-46b6-b028-476d22e94ad4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 315 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "485b5951-1781-4eb6-aef2-a9eeed2b76d7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "485b5951-1781-4eb6-aef2-a9eeed2b76d7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "485b5951-1781-4eb6-aef2-a9eeed2b76d7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode8", + "tags" : [ + + ], + "elementGuid" : { + "value" : "32cae627-0e5c-43cd-a49b-8d5ccb0d0e97" + }, + "attachedElementGuid" : { + "value" : "8b2c50ee-fec1-46b6-b028-476d22e94ad4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 360 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "32cae627-0e5c-43cd-a49b-8d5ccb0d0e97" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "32cae627-0e5c-43cd-a49b-8d5ccb0d0e97" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "32cae627-0e5c-43cd-a49b-8d5ccb0d0e97" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode9", + "tags" : [ + + ], + "elementGuid" : { + "value" : "234f92d5-b363-4282-83d0-737e3c44a27a" + }, + "attachedElementGuid" : { + "value" : "8b2c50ee-fec1-46b6-b028-476d22e94ad4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -1.5, + "y" : 0, + "z" : 405 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "234f92d5-b363-4282-83d0-737e3c44a27a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "234f92d5-b363-4282-83d0-737e3c44a27a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "234f92d5-b363-4282-83d0-737e3c44a27a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode10", + "tags" : [ + + ], + "elementGuid" : { + "value" : "39e84c62-f1a3-4c0b-8e96-c9d64e47d47a" + }, + "attachedElementGuid" : { + "value" : "8b2c50ee-fec1-46b6-b028-476d22e94ad4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -2.5, + "y" : 0, + "z" : 450 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "39e84c62-f1a3-4c0b-8e96-c9d64e47d47a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "39e84c62-f1a3-4c0b-8e96-c9d64e47d47a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "39e84c62-f1a3-4c0b-8e96-c9d64e47d47a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode11", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e4a3139d-219f-4a37-8696-29a16893d09d" + }, + "attachedElementGuid" : { + "value" : "8b2c50ee-fec1-46b6-b028-476d22e94ad4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -2.5, + "y" : 0, + "z" : 495 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e4a3139d-219f-4a37-8696-29a16893d09d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e4a3139d-219f-4a37-8696-29a16893d09d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e4a3139d-219f-4a37-8696-29a16893d09d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode12", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6c36d2fe-e976-4d41-b72c-1af24a2dfb5a" + }, + "attachedElementGuid" : { + "value" : "8b2c50ee-fec1-46b6-b028-476d22e94ad4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2.5, + "y" : 0, + "z" : 540 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6c36d2fe-e976-4d41-b72c-1af24a2dfb5a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6c36d2fe-e976-4d41-b72c-1af24a2dfb5a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6c36d2fe-e976-4d41-b72c-1af24a2dfb5a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode13", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c6f146e2-1c3b-4090-b7e4-86dc1d048bc1" + }, + "attachedElementGuid" : { + "value" : "8b2c50ee-fec1-46b6-b028-476d22e94ad4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 3, + "y" : 0, + "z" : 585 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c6f146e2-1c3b-4090-b7e4-86dc1d048bc1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c6f146e2-1c3b-4090-b7e4-86dc1d048bc1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c6f146e2-1c3b-4090-b7e4-86dc1d048bc1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode14", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ef28f889-305c-4408-ab14-135422c1b722" + }, + "attachedElementGuid" : { + "value" : "8b2c50ee-fec1-46b6-b028-476d22e94ad4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 1.5, + "y" : 0, + "z" : 630 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ef28f889-305c-4408-ab14-135422c1b722" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ef28f889-305c-4408-ab14-135422c1b722" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ef28f889-305c-4408-ab14-135422c1b722" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode15", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5db4f472-9a27-437e-8ded-deab627c89ed" + }, + "attachedElementGuid" : { + "value" : "8b2c50ee-fec1-46b6-b028-476d22e94ad4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -4, + "y" : 0, + "z" : 675 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5db4f472-9a27-437e-8ded-deab627c89ed" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5db4f472-9a27-437e-8ded-deab627c89ed" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5db4f472-9a27-437e-8ded-deab627c89ed" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode16", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ae26c106-0246-4253-9a7a-2f4b95fad9d6" + }, + "attachedElementGuid" : { + "value" : "8b2c50ee-fec1-46b6-b028-476d22e94ad4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 1.5, + "y" : 0, + "z" : 720 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ae26c106-0246-4253-9a7a-2f4b95fad9d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ae26c106-0246-4253-9a7a-2f4b95fad9d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ae26c106-0246-4253-9a7a-2f4b95fad9d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b16ca358-87b1-4287-925d-a68897db6298" + }, + "attachedElementGuid" : { + "value" : "8b2c50ee-fec1-46b6-b028-476d22e94ad4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b16ca358-87b1-4287-925d-a68897db6298" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : false, + "time" : 32.01 + },{ + "value" : false, + "time" : 47.85 + } + ] + }, + "enableProcessTime" : 0, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + { + "startValue" : 32.01, + "endValue" : 5, + "startTime" : 16.17, + "endTime" : 5, + "animationCurveType" : 0 + } + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "415d87e3-119b-43f0-a6a7-a02bec054217" + }, + "attachedElementGuid" : { + "value" : "b16ca358-87b1-4287-925d-a68897db6298" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "415d87e3-119b-43f0-a6a7-a02bec054217" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "415d87e3-119b-43f0-a6a7-a02bec054217" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0.5, + "g" : 0.8, + "b" : 1, + "a" : 0.5 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "415d87e3-119b-43f0-a6a7-a02bec054217" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "T2", + "tags" : [ + + ], + "elementGuid" : { + "value" : "29dd84f1-8a48-4e47-8774-092ddbebcf8c" + }, + "attachedElementGuid" : { + "value" : "02653685-b959-4739-9445-e607f304059e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "29dd84f1-8a48-4e47-8774-092ddbebcf8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "29dd84f1-8a48-4e47-8774-092ddbebcf8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 1, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "29dd84f1-8a48-4e47-8774-092ddbebcf8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 30.51, + "trackEndTime" : 46.35, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "29dd84f1-8a48-4e47-8774-092ddbebcf8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode0", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6b3332b4-265a-4e4d-8563-3a79a78fb3df" + }, + "attachedElementGuid" : { + "value" : "29dd84f1-8a48-4e47-8774-092ddbebcf8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 1.33, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6b3332b4-265a-4e4d-8563-3a79a78fb3df" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6b3332b4-265a-4e4d-8563-3a79a78fb3df" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6b3332b4-265a-4e4d-8563-3a79a78fb3df" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode1", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1e15fd8a-ad20-43c1-bdf2-fca67c08ed5d" + }, + "attachedElementGuid" : { + "value" : "29dd84f1-8a48-4e47-8774-092ddbebcf8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 1.5, + "y" : 0, + "z" : 45 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "1e15fd8a-ad20-43c1-bdf2-fca67c08ed5d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1e15fd8a-ad20-43c1-bdf2-fca67c08ed5d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "1e15fd8a-ad20-43c1-bdf2-fca67c08ed5d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode2", + "tags" : [ + + ], + "elementGuid" : { + "value" : "48b6752d-631a-42f5-b8e7-494252275399" + }, + "attachedElementGuid" : { + "value" : "29dd84f1-8a48-4e47-8774-092ddbebcf8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2.5, + "y" : 0, + "z" : 90 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "48b6752d-631a-42f5-b8e7-494252275399" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "48b6752d-631a-42f5-b8e7-494252275399" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "48b6752d-631a-42f5-b8e7-494252275399" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode3", + "tags" : [ + + ], + "elementGuid" : { + "value" : "74c94e70-446b-4059-8bcc-7f50e32154f9" + }, + "attachedElementGuid" : { + "value" : "29dd84f1-8a48-4e47-8774-092ddbebcf8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2.5, + "y" : 0, + "z" : 135 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "74c94e70-446b-4059-8bcc-7f50e32154f9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "74c94e70-446b-4059-8bcc-7f50e32154f9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "74c94e70-446b-4059-8bcc-7f50e32154f9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode4", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a4d72fd8-db08-4dbc-9c8b-941f7554df09" + }, + "attachedElementGuid" : { + "value" : "29dd84f1-8a48-4e47-8774-092ddbebcf8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -2.5, + "y" : 0, + "z" : 180 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a4d72fd8-db08-4dbc-9c8b-941f7554df09" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a4d72fd8-db08-4dbc-9c8b-941f7554df09" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a4d72fd8-db08-4dbc-9c8b-941f7554df09" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode5", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8347d50c-d0cd-4c24-a7ec-cec62168ac7e" + }, + "attachedElementGuid" : { + "value" : "29dd84f1-8a48-4e47-8774-092ddbebcf8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -3, + "y" : 0, + "z" : 225 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8347d50c-d0cd-4c24-a7ec-cec62168ac7e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8347d50c-d0cd-4c24-a7ec-cec62168ac7e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8347d50c-d0cd-4c24-a7ec-cec62168ac7e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode6", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f88de63b-663c-4ac1-825b-5eaf0750f00d" + }, + "attachedElementGuid" : { + "value" : "29dd84f1-8a48-4e47-8774-092ddbebcf8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -1.5, + "y" : 0, + "z" : 270 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f88de63b-663c-4ac1-825b-5eaf0750f00d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f88de63b-663c-4ac1-825b-5eaf0750f00d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f88de63b-663c-4ac1-825b-5eaf0750f00d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode7", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9e2ce9b2-2d09-4e25-8093-1e23ed6df5a9" + }, + "attachedElementGuid" : { + "value" : "29dd84f1-8a48-4e47-8774-092ddbebcf8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 315 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9e2ce9b2-2d09-4e25-8093-1e23ed6df5a9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9e2ce9b2-2d09-4e25-8093-1e23ed6df5a9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "9e2ce9b2-2d09-4e25-8093-1e23ed6df5a9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode8", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6f12005d-30f6-4d16-abbf-5dcc762e8a72" + }, + "attachedElementGuid" : { + "value" : "29dd84f1-8a48-4e47-8774-092ddbebcf8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 360 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6f12005d-30f6-4d16-abbf-5dcc762e8a72" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6f12005d-30f6-4d16-abbf-5dcc762e8a72" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6f12005d-30f6-4d16-abbf-5dcc762e8a72" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode9", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a412510f-8b9d-4f8c-ae6c-51c9c7f17f46" + }, + "attachedElementGuid" : { + "value" : "29dd84f1-8a48-4e47-8774-092ddbebcf8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 1.5, + "y" : 0, + "z" : 405 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a412510f-8b9d-4f8c-ae6c-51c9c7f17f46" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a412510f-8b9d-4f8c-ae6c-51c9c7f17f46" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a412510f-8b9d-4f8c-ae6c-51c9c7f17f46" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode10", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b2d044b8-711f-4142-9661-af37e4282564" + }, + "attachedElementGuid" : { + "value" : "29dd84f1-8a48-4e47-8774-092ddbebcf8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2.5, + "y" : 0, + "z" : 450 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b2d044b8-711f-4142-9661-af37e4282564" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b2d044b8-711f-4142-9661-af37e4282564" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b2d044b8-711f-4142-9661-af37e4282564" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode11", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ba68c78b-8d82-4e77-9f07-0402309a0e2e" + }, + "attachedElementGuid" : { + "value" : "29dd84f1-8a48-4e47-8774-092ddbebcf8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2.5, + "y" : 0, + "z" : 495 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ba68c78b-8d82-4e77-9f07-0402309a0e2e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ba68c78b-8d82-4e77-9f07-0402309a0e2e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ba68c78b-8d82-4e77-9f07-0402309a0e2e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode12", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b53a36d6-3648-41d6-a685-0287db9c94af" + }, + "attachedElementGuid" : { + "value" : "29dd84f1-8a48-4e47-8774-092ddbebcf8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -2.5, + "y" : 0, + "z" : 540 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b53a36d6-3648-41d6-a685-0287db9c94af" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b53a36d6-3648-41d6-a685-0287db9c94af" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b53a36d6-3648-41d6-a685-0287db9c94af" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode13", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2d4ef181-ab10-4944-84a5-23ae1bfd4d56" + }, + "attachedElementGuid" : { + "value" : "29dd84f1-8a48-4e47-8774-092ddbebcf8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -3, + "y" : 0, + "z" : 585 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2d4ef181-ab10-4944-84a5-23ae1bfd4d56" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2d4ef181-ab10-4944-84a5-23ae1bfd4d56" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "2d4ef181-ab10-4944-84a5-23ae1bfd4d56" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode14", + "tags" : [ + + ], + "elementGuid" : { + "value" : "640cd1da-5b2c-43f9-ace5-f86b647b56b0" + }, + "attachedElementGuid" : { + "value" : "29dd84f1-8a48-4e47-8774-092ddbebcf8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -1.5, + "y" : 0, + "z" : 630 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "640cd1da-5b2c-43f9-ace5-f86b647b56b0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "640cd1da-5b2c-43f9-ace5-f86b647b56b0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "640cd1da-5b2c-43f9-ace5-f86b647b56b0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode15", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d6296db5-f765-4342-8fd6-aa1cf9a1d051" + }, + "attachedElementGuid" : { + "value" : "29dd84f1-8a48-4e47-8774-092ddbebcf8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 4, + "y" : 0, + "z" : 675 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d6296db5-f765-4342-8fd6-aa1cf9a1d051" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d6296db5-f765-4342-8fd6-aa1cf9a1d051" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d6296db5-f765-4342-8fd6-aa1cf9a1d051" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode16", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0aa74d64-7696-41d2-bf67-d6545963e019" + }, + "attachedElementGuid" : { + "value" : "29dd84f1-8a48-4e47-8774-092ddbebcf8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -1.5, + "y" : 0, + "z" : 720 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0aa74d64-7696-41d2-bf67-d6545963e019" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0aa74d64-7696-41d2-bf67-d6545963e019" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0aa74d64-7696-41d2-bf67-d6545963e019" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "221d224f-bbfe-4d90-94f6-4a9dc8a40854" + }, + "attachedElementGuid" : { + "value" : "29dd84f1-8a48-4e47-8774-092ddbebcf8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "221d224f-bbfe-4d90-94f6-4a9dc8a40854" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : false, + "time" : 32.01 + },{ + "value" : false, + "time" : 47.85 + } + ] + }, + "enableProcessTime" : 0, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + { + "startValue" : 32.01, + "endValue" : 5, + "startTime" : 16.17, + "endTime" : 5, + "animationCurveType" : 0 + } + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "87bf0645-a5d3-4ed3-a4e7-077bd8f2faf9" + }, + "attachedElementGuid" : { + "value" : "221d224f-bbfe-4d90-94f6-4a9dc8a40854" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "87bf0645-a5d3-4ed3-a4e7-077bd8f2faf9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "87bf0645-a5d3-4ed3-a4e7-077bd8f2faf9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0.5, + "g" : 0.8, + "b" : 1, + "a" : 0.5 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "87bf0645-a5d3-4ed3-a4e7-077bd8f2faf9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 32.6700325, + "elementName" : "Tap (32.67003)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "707fe079-3bda-4bc3-b0c5-dd9e9a66bc96" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "707fe079-3bda-4bc3-b0c5-dd9e9a66bc96" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "707fe079-3bda-4bc3-b0c5-dd9e9a66bc96" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "707fe079-3bda-4bc3-b0c5-dd9e9a66bc96" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "faa6fbd0-e904-4163-a065-86a2ce5962d8" + }, + "attachedElementGuid" : { + "value" : "707fe079-3bda-4bc3-b0c5-dd9e9a66bc96" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "faa6fbd0-e904-4163-a065-86a2ce5962d8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "faa6fbd0-e904-4163-a065-86a2ce5962d8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "faa6fbd0-e904-4163-a065-86a2ce5962d8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "faa6fbd0-e904-4163-a065-86a2ce5962d8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 32.8350334, + "elementName" : "Tap (32.83503)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "13a97386-b2e8-4940-9bdc-12511ec11550" + }, + "attachedElementGuid" : { + "value" : "0c39cf0c-5e96-46b4-9b12-fd17161dcce8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "13a97386-b2e8-4940-9bdc-12511ec11550" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "13a97386-b2e8-4940-9bdc-12511ec11550" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "13a97386-b2e8-4940-9bdc-12511ec11550" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4538b914-1693-414e-986f-609174837c68" + }, + "attachedElementGuid" : { + "value" : "13a97386-b2e8-4940-9bdc-12511ec11550" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4538b914-1693-414e-986f-609174837c68" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4538b914-1693-414e-986f-609174837c68" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4538b914-1693-414e-986f-609174837c68" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "4538b914-1693-414e-986f-609174837c68" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 33.0000343, + "elementName" : "Tap (33.00003)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a9bd3347-4a9f-42f8-8cd8-0eca67c5482d" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a9bd3347-4a9f-42f8-8cd8-0eca67c5482d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "a9bd3347-4a9f-42f8-8cd8-0eca67c5482d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "a9bd3347-4a9f-42f8-8cd8-0eca67c5482d" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7604361c-a474-4a44-b0d3-78b06316c504" + }, + "attachedElementGuid" : { + "value" : "a9bd3347-4a9f-42f8-8cd8-0eca67c5482d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7604361c-a474-4a44-b0d3-78b06316c504" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7604361c-a474-4a44-b0d3-78b06316c504" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "7604361c-a474-4a44-b0d3-78b06316c504" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "7604361c-a474-4a44-b0d3-78b06316c504" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 33.4950333, + "elementName" : "Tap (33.49503)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8519bbe1-feea-41a5-8c63-fc981d26a2d0" + }, + "attachedElementGuid" : { + "value" : "0c39cf0c-5e96-46b4-9b12-fd17161dcce8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8519bbe1-feea-41a5-8c63-fc981d26a2d0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "8519bbe1-feea-41a5-8c63-fc981d26a2d0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "8519bbe1-feea-41a5-8c63-fc981d26a2d0" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d8285326-9ab0-442e-a736-ec3c41ab5f6f" + }, + "attachedElementGuid" : { + "value" : "8519bbe1-feea-41a5-8c63-fc981d26a2d0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d8285326-9ab0-442e-a736-ec3c41ab5f6f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d8285326-9ab0-442e-a736-ec3c41ab5f6f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d8285326-9ab0-442e-a736-ec3c41ab5f6f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d8285326-9ab0-442e-a736-ec3c41ab5f6f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 33.6600342, + "elementName" : "Tap (33.66003)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "aac12219-2e5f-48fa-a004-69b90c6191ab" + }, + "attachedElementGuid" : { + "value" : "0c39cf0c-5e96-46b4-9b12-fd17161dcce8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "aac12219-2e5f-48fa-a004-69b90c6191ab" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "aac12219-2e5f-48fa-a004-69b90c6191ab" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "aac12219-2e5f-48fa-a004-69b90c6191ab" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "500416eb-ab27-47b2-bcae-1d742b3ecc4c" + }, + "attachedElementGuid" : { + "value" : "aac12219-2e5f-48fa-a004-69b90c6191ab" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "500416eb-ab27-47b2-bcae-1d742b3ecc4c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "500416eb-ab27-47b2-bcae-1d742b3ecc4c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "500416eb-ab27-47b2-bcae-1d742b3ecc4c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "500416eb-ab27-47b2-bcae-1d742b3ecc4c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 33.8250351, + "elementName" : "Tap (33.82504)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7db89864-eb30-46df-9666-8bb4718b58b9" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7db89864-eb30-46df-9666-8bb4718b58b9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "7db89864-eb30-46df-9666-8bb4718b58b9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "7db89864-eb30-46df-9666-8bb4718b58b9" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3232378c-cdd5-411a-85a7-e1c9ec0a7830" + }, + "attachedElementGuid" : { + "value" : "7db89864-eb30-46df-9666-8bb4718b58b9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3232378c-cdd5-411a-85a7-e1c9ec0a7830" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3232378c-cdd5-411a-85a7-e1c9ec0a7830" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3232378c-cdd5-411a-85a7-e1c9ec0a7830" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "3232378c-cdd5-411a-85a7-e1c9ec0a7830" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 33.990036, + "elementName" : "Tap (33.99004)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "95199f7a-5264-4f98-878e-ee5312b489dc" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "95199f7a-5264-4f98-878e-ee5312b489dc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "95199f7a-5264-4f98-878e-ee5312b489dc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "95199f7a-5264-4f98-878e-ee5312b489dc" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "34370c27-a559-4664-8a39-97915f4a4454" + }, + "attachedElementGuid" : { + "value" : "95199f7a-5264-4f98-878e-ee5312b489dc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "34370c27-a559-4664-8a39-97915f4a4454" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "34370c27-a559-4664-8a39-97915f4a4454" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "34370c27-a559-4664-8a39-97915f4a4454" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "34370c27-a559-4664-8a39-97915f4a4454" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 34.4850349, + "elementName" : "Tap (34.48503)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "910e5810-426d-4dc3-be44-674a15977f27" + }, + "attachedElementGuid" : { + "value" : "0c39cf0c-5e96-46b4-9b12-fd17161dcce8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "910e5810-426d-4dc3-be44-674a15977f27" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "910e5810-426d-4dc3-be44-674a15977f27" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "910e5810-426d-4dc3-be44-674a15977f27" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "78fca824-8ed9-412c-b77f-455bcd27eed5" + }, + "attachedElementGuid" : { + "value" : "910e5810-426d-4dc3-be44-674a15977f27" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "78fca824-8ed9-412c-b77f-455bcd27eed5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "78fca824-8ed9-412c-b77f-455bcd27eed5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "78fca824-8ed9-412c-b77f-455bcd27eed5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "78fca824-8ed9-412c-b77f-455bcd27eed5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 34.6500359, + "elementName" : "Tap (34.65004)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6e2d764f-cdb0-40b7-9b9a-0f2d870ae6b7" + }, + "attachedElementGuid" : { + "value" : "0c39cf0c-5e96-46b4-9b12-fd17161dcce8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6e2d764f-cdb0-40b7-9b9a-0f2d870ae6b7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "6e2d764f-cdb0-40b7-9b9a-0f2d870ae6b7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "6e2d764f-cdb0-40b7-9b9a-0f2d870ae6b7" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5eedf4d8-3c05-4f19-b25a-dc7b1dd970e1" + }, + "attachedElementGuid" : { + "value" : "6e2d764f-cdb0-40b7-9b9a-0f2d870ae6b7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5eedf4d8-3c05-4f19-b25a-dc7b1dd970e1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5eedf4d8-3c05-4f19-b25a-dc7b1dd970e1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5eedf4d8-3c05-4f19-b25a-dc7b1dd970e1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "5eedf4d8-3c05-4f19-b25a-dc7b1dd970e1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 34.8150368, + "elementName" : "Tap (34.81504)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0ad28fc1-1ba5-44b7-b76d-e9eee548ecac" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0ad28fc1-1ba5-44b7-b76d-e9eee548ecac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "0ad28fc1-1ba5-44b7-b76d-e9eee548ecac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "0ad28fc1-1ba5-44b7-b76d-e9eee548ecac" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e2d9263e-dcd2-41e6-943b-f912526ada96" + }, + "attachedElementGuid" : { + "value" : "0ad28fc1-1ba5-44b7-b76d-e9eee548ecac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e2d9263e-dcd2-41e6-943b-f912526ada96" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e2d9263e-dcd2-41e6-943b-f912526ada96" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e2d9263e-dcd2-41e6-943b-f912526ada96" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "e2d9263e-dcd2-41e6-943b-f912526ada96" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 34.9800377, + "elementName" : "Tap (34.98004)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3d5ad34c-a9a7-41cf-8454-8d5d8fefad84" + }, + "attachedElementGuid" : { + "value" : "0c39cf0c-5e96-46b4-9b12-fd17161dcce8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3d5ad34c-a9a7-41cf-8454-8d5d8fefad84" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "3d5ad34c-a9a7-41cf-8454-8d5d8fefad84" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "3d5ad34c-a9a7-41cf-8454-8d5d8fefad84" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5f1d3d99-f02b-4cd3-8966-bf9bae42c048" + }, + "attachedElementGuid" : { + "value" : "3d5ad34c-a9a7-41cf-8454-8d5d8fefad84" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5f1d3d99-f02b-4cd3-8966-bf9bae42c048" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5f1d3d99-f02b-4cd3-8966-bf9bae42c048" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5f1d3d99-f02b-4cd3-8966-bf9bae42c048" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "5f1d3d99-f02b-4cd3-8966-bf9bae42c048" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 35.1450348, + "elementName" : "Tap (35.14503)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "42ea250f-0ee2-47ae-887b-872096aae3bb" + }, + "attachedElementGuid" : { + "value" : "0c39cf0c-5e96-46b4-9b12-fd17161dcce8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "42ea250f-0ee2-47ae-887b-872096aae3bb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "42ea250f-0ee2-47ae-887b-872096aae3bb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "42ea250f-0ee2-47ae-887b-872096aae3bb" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c9af1624-28f1-43fc-95f7-f720189a75fb" + }, + "attachedElementGuid" : { + "value" : "42ea250f-0ee2-47ae-887b-872096aae3bb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c9af1624-28f1-43fc-95f7-f720189a75fb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c9af1624-28f1-43fc-95f7-f720189a75fb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c9af1624-28f1-43fc-95f7-f720189a75fb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "c9af1624-28f1-43fc-95f7-f720189a75fb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 35.3100357, + "elementName" : "Tap (35.31004)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c18353e9-10ea-4dd7-b239-3abf7fede79b" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c18353e9-10ea-4dd7-b239-3abf7fede79b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "c18353e9-10ea-4dd7-b239-3abf7fede79b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "c18353e9-10ea-4dd7-b239-3abf7fede79b" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0ae4f1c7-d7a1-4693-b7e9-76c07f6461a9" + }, + "attachedElementGuid" : { + "value" : "c18353e9-10ea-4dd7-b239-3abf7fede79b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0ae4f1c7-d7a1-4693-b7e9-76c07f6461a9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0ae4f1c7-d7a1-4693-b7e9-76c07f6461a9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0ae4f1c7-d7a1-4693-b7e9-76c07f6461a9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "0ae4f1c7-d7a1-4693-b7e9-76c07f6461a9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 35.4750366, + "elementName" : "Tap (35.47504)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a6e5751e-2dd4-43d5-bcb1-06d0a0e4a329" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a6e5751e-2dd4-43d5-bcb1-06d0a0e4a329" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "a6e5751e-2dd4-43d5-bcb1-06d0a0e4a329" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "a6e5751e-2dd4-43d5-bcb1-06d0a0e4a329" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0779b982-7abc-4d35-aeab-ce109e86cf0a" + }, + "attachedElementGuid" : { + "value" : "a6e5751e-2dd4-43d5-bcb1-06d0a0e4a329" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0779b982-7abc-4d35-aeab-ce109e86cf0a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0779b982-7abc-4d35-aeab-ce109e86cf0a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0779b982-7abc-4d35-aeab-ce109e86cf0a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "0779b982-7abc-4d35-aeab-ce109e86cf0a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 35.6400375, + "elementName" : "Tap (35.64004)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bc64a639-0156-421c-8a96-d5975293ae15" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bc64a639-0156-421c-8a96-d5975293ae15" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "bc64a639-0156-421c-8a96-d5975293ae15" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "bc64a639-0156-421c-8a96-d5975293ae15" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1f382005-7682-420c-b926-f2087f31ac0b" + }, + "attachedElementGuid" : { + "value" : "bc64a639-0156-421c-8a96-d5975293ae15" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "1f382005-7682-420c-b926-f2087f31ac0b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1f382005-7682-420c-b926-f2087f31ac0b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "1f382005-7682-420c-b926-f2087f31ac0b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "1f382005-7682-420c-b926-f2087f31ac0b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 35.80504, + "elementName" : "Tap (35.80504)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "97475e2d-fc12-46e8-bb83-d921222ca0c3" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "97475e2d-fc12-46e8-bb83-d921222ca0c3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "97475e2d-fc12-46e8-bb83-d921222ca0c3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "97475e2d-fc12-46e8-bb83-d921222ca0c3" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "027f7494-e684-43a2-8298-af035e2356c9" + }, + "attachedElementGuid" : { + "value" : "97475e2d-fc12-46e8-bb83-d921222ca0c3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "027f7494-e684-43a2-8298-af035e2356c9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "027f7494-e684-43a2-8298-af035e2356c9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "027f7494-e684-43a2-8298-af035e2356c9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "027f7494-e684-43a2-8298-af035e2356c9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 35.9700356, + "elementName" : "Tap (35.97004)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3fe19c95-fc2d-4902-9427-46535ceab325" + }, + "attachedElementGuid" : { + "value" : "0c39cf0c-5e96-46b4-9b12-fd17161dcce8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3fe19c95-fc2d-4902-9427-46535ceab325" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "3fe19c95-fc2d-4902-9427-46535ceab325" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "3fe19c95-fc2d-4902-9427-46535ceab325" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "649fbe51-6767-46f3-aba4-09cff6cebec6" + }, + "attachedElementGuid" : { + "value" : "3fe19c95-fc2d-4902-9427-46535ceab325" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "649fbe51-6767-46f3-aba4-09cff6cebec6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "649fbe51-6767-46f3-aba4-09cff6cebec6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "649fbe51-6767-46f3-aba4-09cff6cebec6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "649fbe51-6767-46f3-aba4-09cff6cebec6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 36.63004, + "elementName" : "Tap (36.63004)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e5c73f90-1e76-4ecb-be68-8c3c39619ca8" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e5c73f90-1e76-4ecb-be68-8c3c39619ca8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "e5c73f90-1e76-4ecb-be68-8c3c39619ca8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "e5c73f90-1e76-4ecb-be68-8c3c39619ca8" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d8919f49-e71c-461f-b6f5-20c02cdd09a3" + }, + "attachedElementGuid" : { + "value" : "e5c73f90-1e76-4ecb-be68-8c3c39619ca8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d8919f49-e71c-461f-b6f5-20c02cdd09a3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d8919f49-e71c-461f-b6f5-20c02cdd09a3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d8919f49-e71c-461f-b6f5-20c02cdd09a3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d8919f49-e71c-461f-b6f5-20c02cdd09a3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 36.9600372, + "elementName" : "Tap (36.96004)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e22034f1-7220-45d8-b895-e87b5368d806" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e22034f1-7220-45d8-b895-e87b5368d806" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "e22034f1-7220-45d8-b895-e87b5368d806" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "e22034f1-7220-45d8-b895-e87b5368d806" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5881487f-551d-4b9f-aec3-ecf72d2dadff" + }, + "attachedElementGuid" : { + "value" : "e22034f1-7220-45d8-b895-e87b5368d806" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5881487f-551d-4b9f-aec3-ecf72d2dadff" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5881487f-551d-4b9f-aec3-ecf72d2dadff" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5881487f-551d-4b9f-aec3-ecf72d2dadff" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "5881487f-551d-4b9f-aec3-ecf72d2dadff" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 36.7950363, + "elementName" : "Tap (36.79504)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2cba2765-147d-45ae-bd3f-47c21875840e" + }, + "attachedElementGuid" : { + "value" : "0c39cf0c-5e96-46b4-9b12-fd17161dcce8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2cba2765-147d-45ae-bd3f-47c21875840e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "2cba2765-147d-45ae-bd3f-47c21875840e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "2cba2765-147d-45ae-bd3f-47c21875840e" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c6c1e565-3355-4dd0-83eb-c3f419e7752e" + }, + "attachedElementGuid" : { + "value" : "2cba2765-147d-45ae-bd3f-47c21875840e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c6c1e565-3355-4dd0-83eb-c3f419e7752e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c6c1e565-3355-4dd0-83eb-c3f419e7752e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c6c1e565-3355-4dd0-83eb-c3f419e7752e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "c6c1e565-3355-4dd0-83eb-c3f419e7752e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 37.45504, + "elementName" : "Tap (37.45504)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d41885d8-ce6a-4a35-be5a-be5f9eedefc0" + }, + "attachedElementGuid" : { + "value" : "0c39cf0c-5e96-46b4-9b12-fd17161dcce8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d41885d8-ce6a-4a35-be5a-be5f9eedefc0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "d41885d8-ce6a-4a35-be5a-be5f9eedefc0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "d41885d8-ce6a-4a35-be5a-be5f9eedefc0" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "76a72965-b1df-4e4b-a623-e92137037fcf" + }, + "attachedElementGuid" : { + "value" : "d41885d8-ce6a-4a35-be5a-be5f9eedefc0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "76a72965-b1df-4e4b-a623-e92137037fcf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "76a72965-b1df-4e4b-a623-e92137037fcf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "76a72965-b1df-4e4b-a623-e92137037fcf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "76a72965-b1df-4e4b-a623-e92137037fcf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 37.6200371, + "elementName" : "Tap (37.62004)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e5c94a6e-2afc-4ddb-b26a-876604ecd717" + }, + "attachedElementGuid" : { + "value" : "0c39cf0c-5e96-46b4-9b12-fd17161dcce8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e5c94a6e-2afc-4ddb-b26a-876604ecd717" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "e5c94a6e-2afc-4ddb-b26a-876604ecd717" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "e5c94a6e-2afc-4ddb-b26a-876604ecd717" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "138fb9e9-22ff-4867-b83b-09b7a4c6d007" + }, + "attachedElementGuid" : { + "value" : "e5c94a6e-2afc-4ddb-b26a-876604ecd717" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "138fb9e9-22ff-4867-b83b-09b7a4c6d007" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "138fb9e9-22ff-4867-b83b-09b7a4c6d007" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "138fb9e9-22ff-4867-b83b-09b7a4c6d007" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "138fb9e9-22ff-4867-b83b-09b7a4c6d007" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 37.785038, + "elementName" : "Tap (37.78504)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a111fb6c-995d-4aac-9327-0e949563888a" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a111fb6c-995d-4aac-9327-0e949563888a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "a111fb6c-995d-4aac-9327-0e949563888a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "a111fb6c-995d-4aac-9327-0e949563888a" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c09d4c09-31ff-4b29-b9c5-b86df0c937fd" + }, + "attachedElementGuid" : { + "value" : "a111fb6c-995d-4aac-9327-0e949563888a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c09d4c09-31ff-4b29-b9c5-b86df0c937fd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c09d4c09-31ff-4b29-b9c5-b86df0c937fd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c09d4c09-31ff-4b29-b9c5-b86df0c937fd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "c09d4c09-31ff-4b29-b9c5-b86df0c937fd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 37.95004, + "elementName" : "Tap (37.95004)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "36b8d5ea-81c4-4fbb-8a97-35321b0cb933" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "36b8d5ea-81c4-4fbb-8a97-35321b0cb933" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "36b8d5ea-81c4-4fbb-8a97-35321b0cb933" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "36b8d5ea-81c4-4fbb-8a97-35321b0cb933" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a2ea552c-5b33-441e-923e-1765fe64d766" + }, + "attachedElementGuid" : { + "value" : "36b8d5ea-81c4-4fbb-8a97-35321b0cb933" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a2ea552c-5b33-441e-923e-1765fe64d766" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a2ea552c-5b33-441e-923e-1765fe64d766" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a2ea552c-5b33-441e-923e-1765fe64d766" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "a2ea552c-5b33-441e-923e-1765fe64d766" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 38.4450378, + "elementName" : "Tap (38.44504)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "745e4aa0-2bcc-4fd3-bd81-fdd4ffe2b015" + }, + "attachedElementGuid" : { + "value" : "0c39cf0c-5e96-46b4-9b12-fd17161dcce8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "745e4aa0-2bcc-4fd3-bd81-fdd4ffe2b015" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "745e4aa0-2bcc-4fd3-bd81-fdd4ffe2b015" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "745e4aa0-2bcc-4fd3-bd81-fdd4ffe2b015" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "74260972-3a9b-403a-9b94-25ac842654f0" + }, + "attachedElementGuid" : { + "value" : "745e4aa0-2bcc-4fd3-bd81-fdd4ffe2b015" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "74260972-3a9b-403a-9b94-25ac842654f0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "74260972-3a9b-403a-9b94-25ac842654f0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "74260972-3a9b-403a-9b94-25ac842654f0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "74260972-3a9b-403a-9b94-25ac842654f0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 38.61004, + "elementName" : "Tap (38.61004)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "acb59370-9ab2-43ea-9ca7-df91ba28713f" + }, + "attachedElementGuid" : { + "value" : "0c39cf0c-5e96-46b4-9b12-fd17161dcce8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "acb59370-9ab2-43ea-9ca7-df91ba28713f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "acb59370-9ab2-43ea-9ca7-df91ba28713f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "acb59370-9ab2-43ea-9ca7-df91ba28713f" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "73d65067-b7c6-4277-963c-23a2c7fb2860" + }, + "attachedElementGuid" : { + "value" : "acb59370-9ab2-43ea-9ca7-df91ba28713f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "73d65067-b7c6-4277-963c-23a2c7fb2860" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "73d65067-b7c6-4277-963c-23a2c7fb2860" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "73d65067-b7c6-4277-963c-23a2c7fb2860" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "73d65067-b7c6-4277-963c-23a2c7fb2860" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 38.77504, + "elementName" : "Tap (38.77504)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3f678006-1985-475f-b3f0-d67bd334c1c8" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3f678006-1985-475f-b3f0-d67bd334c1c8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "3f678006-1985-475f-b3f0-d67bd334c1c8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "3f678006-1985-475f-b3f0-d67bd334c1c8" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d47327c1-6b5e-4c13-a1e4-43130430368c" + }, + "attachedElementGuid" : { + "value" : "3f678006-1985-475f-b3f0-d67bd334c1c8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d47327c1-6b5e-4c13-a1e4-43130430368c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d47327c1-6b5e-4c13-a1e4-43130430368c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d47327c1-6b5e-4c13-a1e4-43130430368c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d47327c1-6b5e-4c13-a1e4-43130430368c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 38.94004, + "elementName" : "Tap (38.94004)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ff8ae37a-e221-487d-8f4c-5c7f1453db46" + }, + "attachedElementGuid" : { + "value" : "0c39cf0c-5e96-46b4-9b12-fd17161dcce8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ff8ae37a-e221-487d-8f4c-5c7f1453db46" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "ff8ae37a-e221-487d-8f4c-5c7f1453db46" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "ff8ae37a-e221-487d-8f4c-5c7f1453db46" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "608616aa-9ffa-4249-80a6-113928509430" + }, + "attachedElementGuid" : { + "value" : "ff8ae37a-e221-487d-8f4c-5c7f1453db46" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "608616aa-9ffa-4249-80a6-113928509430" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "608616aa-9ffa-4249-80a6-113928509430" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "608616aa-9ffa-4249-80a6-113928509430" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "608616aa-9ffa-4249-80a6-113928509430" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 39.10504, + "elementName" : "Tap (39.10504)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e4e54109-5901-4415-8ee1-1df40fd8d554" + }, + "attachedElementGuid" : { + "value" : "0c39cf0c-5e96-46b4-9b12-fd17161dcce8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e4e54109-5901-4415-8ee1-1df40fd8d554" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "e4e54109-5901-4415-8ee1-1df40fd8d554" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "e4e54109-5901-4415-8ee1-1df40fd8d554" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e5ff0c05-34a2-4486-8eb1-e43a50b2971d" + }, + "attachedElementGuid" : { + "value" : "e4e54109-5901-4415-8ee1-1df40fd8d554" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e5ff0c05-34a2-4486-8eb1-e43a50b2971d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e5ff0c05-34a2-4486-8eb1-e43a50b2971d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e5ff0c05-34a2-4486-8eb1-e43a50b2971d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "e5ff0c05-34a2-4486-8eb1-e43a50b2971d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 39.2700424, + "elementName" : "Tap (39.27004)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7d336ac1-4180-437a-951d-2d65ebf8166e" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7d336ac1-4180-437a-951d-2d65ebf8166e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "7d336ac1-4180-437a-951d-2d65ebf8166e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "7d336ac1-4180-437a-951d-2d65ebf8166e" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fa40497e-5dfa-4817-aa60-32b5f7739cb8" + }, + "attachedElementGuid" : { + "value" : "7d336ac1-4180-437a-951d-2d65ebf8166e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "fa40497e-5dfa-4817-aa60-32b5f7739cb8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fa40497e-5dfa-4817-aa60-32b5f7739cb8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "fa40497e-5dfa-4817-aa60-32b5f7739cb8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "fa40497e-5dfa-4817-aa60-32b5f7739cb8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 39.9300423, + "elementName" : "Tap (39.93004)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c5c6cd27-4c43-4236-996b-2e522c4f41f7" + }, + "attachedElementGuid" : { + "value" : "0c39cf0c-5e96-46b4-9b12-fd17161dcce8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c5c6cd27-4c43-4236-996b-2e522c4f41f7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "c5c6cd27-4c43-4236-996b-2e522c4f41f7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "c5c6cd27-4c43-4236-996b-2e522c4f41f7" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fc4a9aaa-67ef-467c-a058-77d8060cbb65" + }, + "attachedElementGuid" : { + "value" : "c5c6cd27-4c43-4236-996b-2e522c4f41f7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "fc4a9aaa-67ef-467c-a058-77d8060cbb65" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fc4a9aaa-67ef-467c-a058-77d8060cbb65" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "fc4a9aaa-67ef-467c-a058-77d8060cbb65" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "fc4a9aaa-67ef-467c-a058-77d8060cbb65" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 39.3798256, + "elementName" : "Stay (39.37983)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "04b497ac-a411-486b-be15-b47d345790c0" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "04b497ac-a411-486b-be15-b47d345790c0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "04b497ac-a411-486b-be15-b47d345790c0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "04b497ac-a411-486b-be15-b47d345790c0" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d3978fee-77a9-42fb-80c6-568ed433705a" + }, + "attachedElementGuid" : { + "value" : "04b497ac-a411-486b-be15-b47d345790c0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d3978fee-77a9-42fb-80c6-568ed433705a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d3978fee-77a9-42fb-80c6-568ed433705a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d3978fee-77a9-42fb-80c6-568ed433705a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d3978fee-77a9-42fb-80c6-568ed433705a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 39.4898224, + "elementName" : "Stay (39.48982)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4e7242d1-9284-4f85-969c-30a47bc218eb" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4e7242d1-9284-4f85-969c-30a47bc218eb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "4e7242d1-9284-4f85-969c-30a47bc218eb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "4e7242d1-9284-4f85-969c-30a47bc218eb" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2a0528c4-a423-46f5-b674-77e717e00cd5" + }, + "attachedElementGuid" : { + "value" : "4e7242d1-9284-4f85-969c-30a47bc218eb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2a0528c4-a423-46f5-b674-77e717e00cd5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2a0528c4-a423-46f5-b674-77e717e00cd5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "2a0528c4-a423-46f5-b674-77e717e00cd5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "2a0528c4-a423-46f5-b674-77e717e00cd5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 39.599823, + "elementName" : "Stay (39.59982)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c2cf54e6-d7ba-4f2d-b540-041d17a9fd92" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c2cf54e6-d7ba-4f2d-b540-041d17a9fd92" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "c2cf54e6-d7ba-4f2d-b540-041d17a9fd92" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "c2cf54e6-d7ba-4f2d-b540-041d17a9fd92" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "25f891b2-d808-4f9d-8ef4-2efdbe11f9c7" + }, + "attachedElementGuid" : { + "value" : "c2cf54e6-d7ba-4f2d-b540-041d17a9fd92" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "25f891b2-d808-4f9d-8ef4-2efdbe11f9c7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "25f891b2-d808-4f9d-8ef4-2efdbe11f9c7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "25f891b2-d808-4f9d-8ef4-2efdbe11f9c7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "25f891b2-d808-4f9d-8ef4-2efdbe11f9c7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 39.70982, + "elementName" : "Stay (39.70982)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6f221c89-901e-4011-abec-6d01913ba039" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6f221c89-901e-4011-abec-6d01913ba039" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "6f221c89-901e-4011-abec-6d01913ba039" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "6f221c89-901e-4011-abec-6d01913ba039" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e40e655e-86f8-492d-8335-10059e969b37" + }, + "attachedElementGuid" : { + "value" : "6f221c89-901e-4011-abec-6d01913ba039" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e40e655e-86f8-492d-8335-10059e969b37" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e40e655e-86f8-492d-8335-10059e969b37" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e40e655e-86f8-492d-8335-10059e969b37" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "e40e655e-86f8-492d-8335-10059e969b37" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 39.4348259, + "elementName" : "Stay (39.43483)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7bb207f8-599a-4260-9867-3cce7ded0c5d" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7bb207f8-599a-4260-9867-3cce7ded0c5d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "7bb207f8-599a-4260-9867-3cce7ded0c5d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "7bb207f8-599a-4260-9867-3cce7ded0c5d" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c66d9513-462c-4aff-ada1-3cb5669a6af1" + }, + "attachedElementGuid" : { + "value" : "7bb207f8-599a-4260-9867-3cce7ded0c5d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c66d9513-462c-4aff-ada1-3cb5669a6af1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c66d9513-462c-4aff-ada1-3cb5669a6af1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c66d9513-462c-4aff-ada1-3cb5669a6af1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "c66d9513-462c-4aff-ada1-3cb5669a6af1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 39.5448227, + "elementName" : "Stay (39.54482)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fedc0822-9808-49c8-be35-960bec9c6215" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fedc0822-9808-49c8-be35-960bec9c6215" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "fedc0822-9808-49c8-be35-960bec9c6215" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "fedc0822-9808-49c8-be35-960bec9c6215" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7c586546-a79d-4fea-90fb-abac86d818c8" + }, + "attachedElementGuid" : { + "value" : "fedc0822-9808-49c8-be35-960bec9c6215" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7c586546-a79d-4fea-90fb-abac86d818c8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7c586546-a79d-4fea-90fb-abac86d818c8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "7c586546-a79d-4fea-90fb-abac86d818c8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "7c586546-a79d-4fea-90fb-abac86d818c8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 39.65482, + "elementName" : "Stay (39.65482)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2fb8ee4e-1b73-4d52-a42f-9683c51935fb" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2fb8ee4e-1b73-4d52-a42f-9683c51935fb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "2fb8ee4e-1b73-4d52-a42f-9683c51935fb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "2fb8ee4e-1b73-4d52-a42f-9683c51935fb" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c63716dd-029c-4483-acab-cd78744a157e" + }, + "attachedElementGuid" : { + "value" : "2fb8ee4e-1b73-4d52-a42f-9683c51935fb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c63716dd-029c-4483-acab-cd78744a157e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c63716dd-029c-4483-acab-cd78744a157e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c63716dd-029c-4483-acab-cd78744a157e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "c63716dd-029c-4483-acab-cd78744a157e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 40.5900421, + "elementName" : "Tap (40.59004)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ea06df49-af8f-44eb-b5ad-71cd0977302a" + }, + "attachedElementGuid" : { + "value" : "0c39cf0c-5e96-46b4-9b12-fd17161dcce8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ea06df49-af8f-44eb-b5ad-71cd0977302a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "ea06df49-af8f-44eb-b5ad-71cd0977302a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "ea06df49-af8f-44eb-b5ad-71cd0977302a" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3548f6e6-dd0c-49ef-97bc-3a22d73ceac0" + }, + "attachedElementGuid" : { + "value" : "ea06df49-af8f-44eb-b5ad-71cd0977302a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3548f6e6-dd0c-49ef-97bc-3a22d73ceac0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3548f6e6-dd0c-49ef-97bc-3a22d73ceac0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3548f6e6-dd0c-49ef-97bc-3a22d73ceac0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "3548f6e6-dd0c-49ef-97bc-3a22d73ceac0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 40.755043, + "elementName" : "Tap (40.75504)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "336206c0-7397-4c6b-961c-13f94b003dd7" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "336206c0-7397-4c6b-961c-13f94b003dd7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "336206c0-7397-4c6b-961c-13f94b003dd7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "336206c0-7397-4c6b-961c-13f94b003dd7" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e25ef3fd-89be-410b-b992-f7e26a1b09b4" + }, + "attachedElementGuid" : { + "value" : "336206c0-7397-4c6b-961c-13f94b003dd7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e25ef3fd-89be-410b-b992-f7e26a1b09b4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e25ef3fd-89be-410b-b992-f7e26a1b09b4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e25ef3fd-89be-410b-b992-f7e26a1b09b4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "e25ef3fd-89be-410b-b992-f7e26a1b09b4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 40.9200439, + "elementName" : "Tap (40.92004)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d0be3a16-7be8-4d1b-af73-a06eadffea27" + }, + "attachedElementGuid" : { + "value" : "0c39cf0c-5e96-46b4-9b12-fd17161dcce8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d0be3a16-7be8-4d1b-af73-a06eadffea27" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "d0be3a16-7be8-4d1b-af73-a06eadffea27" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "d0be3a16-7be8-4d1b-af73-a06eadffea27" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "633be350-f65d-4a0a-bde9-dcad3640faec" + }, + "attachedElementGuid" : { + "value" : "d0be3a16-7be8-4d1b-af73-a06eadffea27" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "633be350-f65d-4a0a-bde9-dcad3640faec" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "633be350-f65d-4a0a-bde9-dcad3640faec" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "633be350-f65d-4a0a-bde9-dcad3640faec" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "633be350-f65d-4a0a-bde9-dcad3640faec" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 41.4150429, + "elementName" : "Tap (41.41504)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "45af376f-7b33-48ec-ac90-eee8f035a290" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "45af376f-7b33-48ec-ac90-eee8f035a290" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "45af376f-7b33-48ec-ac90-eee8f035a290" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "45af376f-7b33-48ec-ac90-eee8f035a290" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6aa9db89-af38-43cd-9367-61c056428010" + }, + "attachedElementGuid" : { + "value" : "45af376f-7b33-48ec-ac90-eee8f035a290" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6aa9db89-af38-43cd-9367-61c056428010" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6aa9db89-af38-43cd-9367-61c056428010" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6aa9db89-af38-43cd-9367-61c056428010" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "6aa9db89-af38-43cd-9367-61c056428010" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 41.5800438, + "elementName" : "Tap (41.58004)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3fe1ec16-ca1c-41a6-85c2-c7102057aa27" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3fe1ec16-ca1c-41a6-85c2-c7102057aa27" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "3fe1ec16-ca1c-41a6-85c2-c7102057aa27" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "3fe1ec16-ca1c-41a6-85c2-c7102057aa27" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "37e63ce5-d5c5-477b-b13d-e35b31d169da" + }, + "attachedElementGuid" : { + "value" : "3fe1ec16-ca1c-41a6-85c2-c7102057aa27" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "37e63ce5-d5c5-477b-b13d-e35b31d169da" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "37e63ce5-d5c5-477b-b13d-e35b31d169da" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "37e63ce5-d5c5-477b-b13d-e35b31d169da" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "37e63ce5-d5c5-477b-b13d-e35b31d169da" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 41.7450447, + "elementName" : "Tap (41.74504)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9f37d2e7-cba7-4e76-94a8-5c0efc9b202c" + }, + "attachedElementGuid" : { + "value" : "0c39cf0c-5e96-46b4-9b12-fd17161dcce8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9f37d2e7-cba7-4e76-94a8-5c0efc9b202c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "9f37d2e7-cba7-4e76-94a8-5c0efc9b202c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "9f37d2e7-cba7-4e76-94a8-5c0efc9b202c" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "64221c22-e88f-43c9-a700-c6bf5fb05238" + }, + "attachedElementGuid" : { + "value" : "9f37d2e7-cba7-4e76-94a8-5c0efc9b202c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "64221c22-e88f-43c9-a700-c6bf5fb05238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "64221c22-e88f-43c9-a700-c6bf5fb05238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "64221c22-e88f-43c9-a700-c6bf5fb05238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "64221c22-e88f-43c9-a700-c6bf5fb05238" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 41.91004, + "elementName" : "Tap (41.91004)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e813e08f-baca-433e-8c5c-5b3f5e53d8ad" + }, + "attachedElementGuid" : { + "value" : "0c39cf0c-5e96-46b4-9b12-fd17161dcce8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e813e08f-baca-433e-8c5c-5b3f5e53d8ad" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "e813e08f-baca-433e-8c5c-5b3f5e53d8ad" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "e813e08f-baca-433e-8c5c-5b3f5e53d8ad" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f476236f-cae2-45ad-8ffe-50991e441f23" + }, + "attachedElementGuid" : { + "value" : "e813e08f-baca-433e-8c5c-5b3f5e53d8ad" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f476236f-cae2-45ad-8ffe-50991e441f23" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f476236f-cae2-45ad-8ffe-50991e441f23" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f476236f-cae2-45ad-8ffe-50991e441f23" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "f476236f-cae2-45ad-8ffe-50991e441f23" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 42.4050446, + "elementName" : "Tap (42.40504)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7d7955f0-a67a-4d92-b85e-2b2a29dd8233" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7d7955f0-a67a-4d92-b85e-2b2a29dd8233" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "7d7955f0-a67a-4d92-b85e-2b2a29dd8233" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "7d7955f0-a67a-4d92-b85e-2b2a29dd8233" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8ceacbce-98ba-4595-b0eb-3b9d803f5704" + }, + "attachedElementGuid" : { + "value" : "7d7955f0-a67a-4d92-b85e-2b2a29dd8233" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8ceacbce-98ba-4595-b0eb-3b9d803f5704" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8ceacbce-98ba-4595-b0eb-3b9d803f5704" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8ceacbce-98ba-4595-b0eb-3b9d803f5704" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "8ceacbce-98ba-4595-b0eb-3b9d803f5704" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 42.5700455, + "elementName" : "Tap (42.57005)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "871a5913-9cc6-40b0-b700-06d1afd2d1fe" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "871a5913-9cc6-40b0-b700-06d1afd2d1fe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "871a5913-9cc6-40b0-b700-06d1afd2d1fe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "871a5913-9cc6-40b0-b700-06d1afd2d1fe" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "68a7d54d-2a87-4298-a9e8-0d84c79cc34d" + }, + "attachedElementGuid" : { + "value" : "871a5913-9cc6-40b0-b700-06d1afd2d1fe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "68a7d54d-2a87-4298-a9e8-0d84c79cc34d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "68a7d54d-2a87-4298-a9e8-0d84c79cc34d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "68a7d54d-2a87-4298-a9e8-0d84c79cc34d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "68a7d54d-2a87-4298-a9e8-0d84c79cc34d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 42.9000435, + "elementName" : "Tap (42.90004)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b4359d52-2959-4651-ba57-fa95a0b06d45" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b4359d52-2959-4651-ba57-fa95a0b06d45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "b4359d52-2959-4651-ba57-fa95a0b06d45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "b4359d52-2959-4651-ba57-fa95a0b06d45" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d29fd24d-872a-4fd3-9437-806391849d2e" + }, + "attachedElementGuid" : { + "value" : "b4359d52-2959-4651-ba57-fa95a0b06d45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d29fd24d-872a-4fd3-9437-806391849d2e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d29fd24d-872a-4fd3-9437-806391849d2e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d29fd24d-872a-4fd3-9437-806391849d2e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d29fd24d-872a-4fd3-9437-806391849d2e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 43.0650444, + "elementName" : "Tap (43.06504)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a3801b02-c7f2-484f-991d-d3a65cd850ee" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a3801b02-c7f2-484f-991d-d3a65cd850ee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "a3801b02-c7f2-484f-991d-d3a65cd850ee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "a3801b02-c7f2-484f-991d-d3a65cd850ee" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6ae431b6-8520-4a75-aaee-66cd8f80989c" + }, + "attachedElementGuid" : { + "value" : "a3801b02-c7f2-484f-991d-d3a65cd850ee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6ae431b6-8520-4a75-aaee-66cd8f80989c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6ae431b6-8520-4a75-aaee-66cd8f80989c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6ae431b6-8520-4a75-aaee-66cd8f80989c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "6ae431b6-8520-4a75-aaee-66cd8f80989c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 43.11981, + "elementName" : "Stay (43.11981)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ce13c3a7-1024-4e18-a4bd-a17a952f82e7" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ce13c3a7-1024-4e18-a4bd-a17a952f82e7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "ce13c3a7-1024-4e18-a4bd-a17a952f82e7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "ce13c3a7-1024-4e18-a4bd-a17a952f82e7" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d664596b-71a7-4fe3-bfcf-4fdb54d91be4" + }, + "attachedElementGuid" : { + "value" : "ce13c3a7-1024-4e18-a4bd-a17a952f82e7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d664596b-71a7-4fe3-bfcf-4fdb54d91be4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d664596b-71a7-4fe3-bfcf-4fdb54d91be4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d664596b-71a7-4fe3-bfcf-4fdb54d91be4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d664596b-71a7-4fe3-bfcf-4fdb54d91be4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 43.1748123, + "elementName" : "Stay (43.17481)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "123fe1c5-2fff-4442-b60f-ccc660ca4dd5" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "123fe1c5-2fff-4442-b60f-ccc660ca4dd5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "123fe1c5-2fff-4442-b60f-ccc660ca4dd5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "123fe1c5-2fff-4442-b60f-ccc660ca4dd5" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3f736ed7-d56e-4939-b349-df0ebc97d151" + }, + "attachedElementGuid" : { + "value" : "123fe1c5-2fff-4442-b60f-ccc660ca4dd5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3f736ed7-d56e-4939-b349-df0ebc97d151" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3f736ed7-d56e-4939-b349-df0ebc97d151" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3f736ed7-d56e-4939-b349-df0ebc97d151" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "3f736ed7-d56e-4939-b349-df0ebc97d151" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 43.2298126, + "elementName" : "Stay (43.22981)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4e5f95d2-14ee-485d-86a1-aacc27bf3cbe" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4e5f95d2-14ee-485d-86a1-aacc27bf3cbe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "4e5f95d2-14ee-485d-86a1-aacc27bf3cbe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "4e5f95d2-14ee-485d-86a1-aacc27bf3cbe" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8e04285d-0e83-4771-a294-d668177de2df" + }, + "attachedElementGuid" : { + "value" : "4e5f95d2-14ee-485d-86a1-aacc27bf3cbe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8e04285d-0e83-4771-a294-d668177de2df" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8e04285d-0e83-4771-a294-d668177de2df" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8e04285d-0e83-4771-a294-d668177de2df" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "8e04285d-0e83-4771-a294-d668177de2df" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 43.2848129, + "elementName" : "Stay (43.28481)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "afa64dfa-07e1-42aa-bd40-39e6049f8549" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "afa64dfa-07e1-42aa-bd40-39e6049f8549" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "afa64dfa-07e1-42aa-bd40-39e6049f8549" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "afa64dfa-07e1-42aa-bd40-39e6049f8549" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "330e4059-8587-4f18-b27d-4b287ec2e3f9" + }, + "attachedElementGuid" : { + "value" : "afa64dfa-07e1-42aa-bd40-39e6049f8549" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "330e4059-8587-4f18-b27d-4b287ec2e3f9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "330e4059-8587-4f18-b27d-4b287ec2e3f9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "330e4059-8587-4f18-b27d-4b287ec2e3f9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "330e4059-8587-4f18-b27d-4b287ec2e3f9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 43.339817, + "elementName" : "Stay (43.33982)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "99423096-b800-4b6f-9558-e7c5b5a82f8a" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "99423096-b800-4b6f-9558-e7c5b5a82f8a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "99423096-b800-4b6f-9558-e7c5b5a82f8a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "99423096-b800-4b6f-9558-e7c5b5a82f8a" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2f83b489-d02a-4d62-88a8-be541d3ac5ea" + }, + "attachedElementGuid" : { + "value" : "99423096-b800-4b6f-9558-e7c5b5a82f8a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2f83b489-d02a-4d62-88a8-be541d3ac5ea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2f83b489-d02a-4d62-88a8-be541d3ac5ea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "2f83b489-d02a-4d62-88a8-be541d3ac5ea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "2f83b489-d02a-4d62-88a8-be541d3ac5ea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 43.3948174, + "elementName" : "Stay (43.39482)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3e81c8ce-3363-427a-b235-a925e069d1b2" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3e81c8ce-3363-427a-b235-a925e069d1b2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "3e81c8ce-3363-427a-b235-a925e069d1b2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "3e81c8ce-3363-427a-b235-a925e069d1b2" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "edb23268-9182-4400-880d-0211f21b1fc2" + }, + "attachedElementGuid" : { + "value" : "3e81c8ce-3363-427a-b235-a925e069d1b2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "edb23268-9182-4400-880d-0211f21b1fc2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "edb23268-9182-4400-880d-0211f21b1fc2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "edb23268-9182-4400-880d-0211f21b1fc2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "edb23268-9182-4400-880d-0211f21b1fc2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 42.7350426, + "elementName" : "Tap (42.73504)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ab6bd9c1-c091-4677-838d-5eedd2b094e0" + }, + "attachedElementGuid" : { + "value" : "0c39cf0c-5e96-46b4-9b12-fd17161dcce8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ab6bd9c1-c091-4677-838d-5eedd2b094e0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "ab6bd9c1-c091-4677-838d-5eedd2b094e0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "ab6bd9c1-c091-4677-838d-5eedd2b094e0" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "76590c58-4d7d-4634-82e8-d77db54a54a8" + }, + "attachedElementGuid" : { + "value" : "ab6bd9c1-c091-4677-838d-5eedd2b094e0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "76590c58-4d7d-4634-82e8-d77db54a54a8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "76590c58-4d7d-4634-82e8-d77db54a54a8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "76590c58-4d7d-4634-82e8-d77db54a54a8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "76590c58-4d7d-4634-82e8-d77db54a54a8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 43.5600433, + "elementName" : "Tap (43.56004)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f9ab344a-5749-4fb8-b77a-4ab66ea03f67" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f9ab344a-5749-4fb8-b77a-4ab66ea03f67" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "f9ab344a-5749-4fb8-b77a-4ab66ea03f67" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "f9ab344a-5749-4fb8-b77a-4ab66ea03f67" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "116843ee-f52b-424d-b04a-8ca2ecb8392f" + }, + "attachedElementGuid" : { + "value" : "f9ab344a-5749-4fb8-b77a-4ab66ea03f67" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "116843ee-f52b-424d-b04a-8ca2ecb8392f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "116843ee-f52b-424d-b04a-8ca2ecb8392f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "116843ee-f52b-424d-b04a-8ca2ecb8392f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "116843ee-f52b-424d-b04a-8ca2ecb8392f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 43.7250443, + "elementName" : "Tap (43.72504)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4b976979-5923-4b86-b880-b9b4bf35c659" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4b976979-5923-4b86-b880-b9b4bf35c659" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "4b976979-5923-4b86-b880-b9b4bf35c659" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "4b976979-5923-4b86-b880-b9b4bf35c659" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e7511dee-beda-4330-bd06-d0d71ba169ea" + }, + "attachedElementGuid" : { + "value" : "4b976979-5923-4b86-b880-b9b4bf35c659" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e7511dee-beda-4330-bd06-d0d71ba169ea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e7511dee-beda-4330-bd06-d0d71ba169ea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e7511dee-beda-4330-bd06-d0d71ba169ea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "e7511dee-beda-4330-bd06-d0d71ba169ea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 43.8900452, + "elementName" : "Tap (43.89005)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d446f055-a034-4ec6-90e9-49d06e896611" + }, + "attachedElementGuid" : { + "value" : "0c39cf0c-5e96-46b4-9b12-fd17161dcce8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d446f055-a034-4ec6-90e9-49d06e896611" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "d446f055-a034-4ec6-90e9-49d06e896611" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "d446f055-a034-4ec6-90e9-49d06e896611" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d0128e53-4bf3-4a7a-931d-722d49288a57" + }, + "attachedElementGuid" : { + "value" : "d446f055-a034-4ec6-90e9-49d06e896611" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d0128e53-4bf3-4a7a-931d-722d49288a57" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d0128e53-4bf3-4a7a-931d-722d49288a57" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d0128e53-4bf3-4a7a-931d-722d49288a57" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d0128e53-4bf3-4a7a-931d-722d49288a57" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 44.550045, + "elementName" : "Tap (44.55005)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "21352545-c431-4bb5-99a6-ac83db593fbc" + }, + "attachedElementGuid" : { + "value" : "0c39cf0c-5e96-46b4-9b12-fd17161dcce8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "21352545-c431-4bb5-99a6-ac83db593fbc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "21352545-c431-4bb5-99a6-ac83db593fbc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "21352545-c431-4bb5-99a6-ac83db593fbc" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "53eb25d9-4f3e-4775-a9ec-ae016c4ffc15" + }, + "attachedElementGuid" : { + "value" : "21352545-c431-4bb5-99a6-ac83db593fbc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "53eb25d9-4f3e-4775-a9ec-ae016c4ffc15" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "53eb25d9-4f3e-4775-a9ec-ae016c4ffc15" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "53eb25d9-4f3e-4775-a9ec-ae016c4ffc15" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "53eb25d9-4f3e-4775-a9ec-ae016c4ffc15" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 44.7150459, + "elementName" : "Tap (44.71505)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a344730e-b25d-48ff-92e6-4b1a0e583782" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a344730e-b25d-48ff-92e6-4b1a0e583782" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "a344730e-b25d-48ff-92e6-4b1a0e583782" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "a344730e-b25d-48ff-92e6-4b1a0e583782" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b51d20f7-27d3-41f9-afc2-a49c69fe6d46" + }, + "attachedElementGuid" : { + "value" : "a344730e-b25d-48ff-92e6-4b1a0e583782" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b51d20f7-27d3-41f9-afc2-a49c69fe6d46" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b51d20f7-27d3-41f9-afc2-a49c69fe6d46" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b51d20f7-27d3-41f9-afc2-a49c69fe6d46" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "b51d20f7-27d3-41f9-afc2-a49c69fe6d46" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 44.8800468, + "elementName" : "Tap (44.88005)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "30282072-46d2-4ae4-8650-d421af038571" + }, + "attachedElementGuid" : { + "value" : "0c39cf0c-5e96-46b4-9b12-fd17161dcce8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "30282072-46d2-4ae4-8650-d421af038571" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "30282072-46d2-4ae4-8650-d421af038571" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "30282072-46d2-4ae4-8650-d421af038571" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d6c24298-1f63-41d4-8990-c137dd3fb82f" + }, + "attachedElementGuid" : { + "value" : "30282072-46d2-4ae4-8650-d421af038571" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d6c24298-1f63-41d4-8990-c137dd3fb82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d6c24298-1f63-41d4-8990-c137dd3fb82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d6c24298-1f63-41d4-8990-c137dd3fb82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d6c24298-1f63-41d4-8990-c137dd3fb82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 45.3750458, + "elementName" : "Tap (45.37505)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3d6038e8-3fd0-4845-afbc-2735ffc54706" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3d6038e8-3fd0-4845-afbc-2735ffc54706" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "3d6038e8-3fd0-4845-afbc-2735ffc54706" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "3d6038e8-3fd0-4845-afbc-2735ffc54706" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e5beb300-cf58-413d-9f0e-257f0c3101a3" + }, + "attachedElementGuid" : { + "value" : "3d6038e8-3fd0-4845-afbc-2735ffc54706" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e5beb300-cf58-413d-9f0e-257f0c3101a3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e5beb300-cf58-413d-9f0e-257f0c3101a3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e5beb300-cf58-413d-9f0e-257f0c3101a3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "e5beb300-cf58-413d-9f0e-257f0c3101a3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 45.5400467, + "elementName" : "Tap (45.54005)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6655daef-808e-4806-979a-7875b161b8ba" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6655daef-808e-4806-979a-7875b161b8ba" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "6655daef-808e-4806-979a-7875b161b8ba" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "6655daef-808e-4806-979a-7875b161b8ba" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "186d630d-1c50-4a7d-9e5d-6cebc5e5fec2" + }, + "attachedElementGuid" : { + "value" : "6655daef-808e-4806-979a-7875b161b8ba" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "186d630d-1c50-4a7d-9e5d-6cebc5e5fec2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "186d630d-1c50-4a7d-9e5d-6cebc5e5fec2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "186d630d-1c50-4a7d-9e5d-6cebc5e5fec2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "186d630d-1c50-4a7d-9e5d-6cebc5e5fec2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 45.7050476, + "elementName" : "Tap (45.70505)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "10bdbd9c-5407-4200-95c6-b3e1ecc668fa" + }, + "attachedElementGuid" : { + "value" : "0c39cf0c-5e96-46b4-9b12-fd17161dcce8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "10bdbd9c-5407-4200-95c6-b3e1ecc668fa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "10bdbd9c-5407-4200-95c6-b3e1ecc668fa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "10bdbd9c-5407-4200-95c6-b3e1ecc668fa" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f9974201-664e-4f8b-94f3-8f087222bd8d" + }, + "attachedElementGuid" : { + "value" : "10bdbd9c-5407-4200-95c6-b3e1ecc668fa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f9974201-664e-4f8b-94f3-8f087222bd8d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f9974201-664e-4f8b-94f3-8f087222bd8d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f9974201-664e-4f8b-94f3-8f087222bd8d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "f9974201-664e-4f8b-94f3-8f087222bd8d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 45.87005, + "elementName" : "Tap (45.87005)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9981a40a-6b95-4f85-9aa5-786e7541800f" + }, + "attachedElementGuid" : { + "value" : "0c39cf0c-5e96-46b4-9b12-fd17161dcce8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9981a40a-6b95-4f85-9aa5-786e7541800f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "9981a40a-6b95-4f85-9aa5-786e7541800f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "9981a40a-6b95-4f85-9aa5-786e7541800f" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "794fbc76-ebbd-4011-983f-66692dec9e6e" + }, + "attachedElementGuid" : { + "value" : "9981a40a-6b95-4f85-9aa5-786e7541800f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "794fbc76-ebbd-4011-983f-66692dec9e6e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "794fbc76-ebbd-4011-983f-66692dec9e6e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "794fbc76-ebbd-4011-983f-66692dec9e6e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "794fbc76-ebbd-4011-983f-66692dec9e6e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 46.3650475, + "elementName" : "Tap (46.36505)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2fb03332-d636-4fc9-9314-4c1299bedaef" + }, + "attachedElementGuid" : { + "value" : "0c39cf0c-5e96-46b4-9b12-fd17161dcce8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2fb03332-d636-4fc9-9314-4c1299bedaef" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "2fb03332-d636-4fc9-9314-4c1299bedaef" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "2fb03332-d636-4fc9-9314-4c1299bedaef" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f3772c61-7a4a-4104-b640-e93202d62758" + }, + "attachedElementGuid" : { + "value" : "2fb03332-d636-4fc9-9314-4c1299bedaef" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f3772c61-7a4a-4104-b640-e93202d62758" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f3772c61-7a4a-4104-b640-e93202d62758" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f3772c61-7a4a-4104-b640-e93202d62758" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "f3772c61-7a4a-4104-b640-e93202d62758" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 46.53005, + "elementName" : "Tap (46.53005)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "22482eb2-7927-46e5-96df-c2c4258e873e" + }, + "attachedElementGuid" : { + "value" : "0c39cf0c-5e96-46b4-9b12-fd17161dcce8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "22482eb2-7927-46e5-96df-c2c4258e873e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "22482eb2-7927-46e5-96df-c2c4258e873e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "22482eb2-7927-46e5-96df-c2c4258e873e" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c27dfebc-cdde-4dc4-95fb-d0c52df603a1" + }, + "attachedElementGuid" : { + "value" : "22482eb2-7927-46e5-96df-c2c4258e873e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c27dfebc-cdde-4dc4-95fb-d0c52df603a1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c27dfebc-cdde-4dc4-95fb-d0c52df603a1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c27dfebc-cdde-4dc4-95fb-d0c52df603a1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "c27dfebc-cdde-4dc4-95fb-d0c52df603a1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 46.69505, + "elementName" : "Tap (46.69505)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f82f0bc0-b514-44b8-8d84-0dc7bbb1e4ad" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f82f0bc0-b514-44b8-8d84-0dc7bbb1e4ad" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "f82f0bc0-b514-44b8-8d84-0dc7bbb1e4ad" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "f82f0bc0-b514-44b8-8d84-0dc7bbb1e4ad" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9b6a2f95-8c85-470c-b57a-1d113c50efa0" + }, + "attachedElementGuid" : { + "value" : "f82f0bc0-b514-44b8-8d84-0dc7bbb1e4ad" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9b6a2f95-8c85-470c-b57a-1d113c50efa0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9b6a2f95-8c85-470c-b57a-1d113c50efa0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "9b6a2f95-8c85-470c-b57a-1d113c50efa0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "9b6a2f95-8c85-470c-b57a-1d113c50efa0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 46.86005, + "elementName" : "Tap (46.86005)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "66d9eae0-30c3-433a-8da4-2cc71892ef17" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "66d9eae0-30c3-433a-8da4-2cc71892ef17" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "66d9eae0-30c3-433a-8da4-2cc71892ef17" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "66d9eae0-30c3-433a-8da4-2cc71892ef17" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1ead55da-596a-40a1-b1af-0fae8b3442b9" + }, + "attachedElementGuid" : { + "value" : "66d9eae0-30c3-433a-8da4-2cc71892ef17" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "1ead55da-596a-40a1-b1af-0fae8b3442b9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1ead55da-596a-40a1-b1af-0fae8b3442b9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "1ead55da-596a-40a1-b1af-0fae8b3442b9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "1ead55da-596a-40a1-b1af-0fae8b3442b9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 46.86005, + "elementName" : "Tap (46.86005)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "74ce9ffa-d1be-4224-a4da-c311ccd74146" + }, + "attachedElementGuid" : { + "value" : "0c39cf0c-5e96-46b4-9b12-fd17161dcce8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "74ce9ffa-d1be-4224-a4da-c311ccd74146" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "74ce9ffa-d1be-4224-a4da-c311ccd74146" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "74ce9ffa-d1be-4224-a4da-c311ccd74146" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "675918c2-7733-4fc5-89a5-3a19d59e68b5" + }, + "attachedElementGuid" : { + "value" : "74ce9ffa-d1be-4224-a4da-c311ccd74146" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "675918c2-7733-4fc5-89a5-3a19d59e68b5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "675918c2-7733-4fc5-89a5-3a19d59e68b5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "675918c2-7733-4fc5-89a5-3a19d59e68b5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "675918c2-7733-4fc5-89a5-3a19d59e68b5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 47.0250473, + "elementName" : "Tap (47.02505)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "826a8dd9-e993-492e-bd54-5c2e9ae00166" + }, + "attachedElementGuid" : { + "value" : "0c39cf0c-5e96-46b4-9b12-fd17161dcce8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "826a8dd9-e993-492e-bd54-5c2e9ae00166" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "826a8dd9-e993-492e-bd54-5c2e9ae00166" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "826a8dd9-e993-492e-bd54-5c2e9ae00166" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a16571e2-e6c1-4c15-958a-8d714f186ce1" + }, + "attachedElementGuid" : { + "value" : "826a8dd9-e993-492e-bd54-5c2e9ae00166" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a16571e2-e6c1-4c15-958a-8d714f186ce1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a16571e2-e6c1-4c15-958a-8d714f186ce1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a16571e2-e6c1-4c15-958a-8d714f186ce1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "a16571e2-e6c1-4c15-958a-8d714f186ce1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 47.19005, + "elementName" : "Tap (47.19005)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8dfe00d4-af21-4a29-bb7b-37db92d202d6" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8dfe00d4-af21-4a29-bb7b-37db92d202d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "8dfe00d4-af21-4a29-bb7b-37db92d202d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "8dfe00d4-af21-4a29-bb7b-37db92d202d6" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e95e686b-70b8-48e5-bc43-3b65b453ee30" + }, + "attachedElementGuid" : { + "value" : "8dfe00d4-af21-4a29-bb7b-37db92d202d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e95e686b-70b8-48e5-bc43-3b65b453ee30" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e95e686b-70b8-48e5-bc43-3b65b453ee30" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e95e686b-70b8-48e5-bc43-3b65b453ee30" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "e95e686b-70b8-48e5-bc43-3b65b453ee30" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 47.19005, + "elementName" : "Tap (47.19005)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e4c3968b-a1b5-4f75-87c3-987e93757abd" + }, + "attachedElementGuid" : { + "value" : "0c39cf0c-5e96-46b4-9b12-fd17161dcce8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e4c3968b-a1b5-4f75-87c3-987e93757abd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "e4c3968b-a1b5-4f75-87c3-987e93757abd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "e4c3968b-a1b5-4f75-87c3-987e93757abd" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3ab3de43-ba1f-4ebb-9318-5239d1829a02" + }, + "attachedElementGuid" : { + "value" : "e4c3968b-a1b5-4f75-87c3-987e93757abd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3ab3de43-ba1f-4ebb-9318-5239d1829a02" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3ab3de43-ba1f-4ebb-9318-5239d1829a02" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3ab3de43-ba1f-4ebb-9318-5239d1829a02" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "3ab3de43-ba1f-4ebb-9318-5239d1829a02" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 47.35505, + "elementName" : "Tap (47.35505)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f5a50ee5-4eed-4bf9-9186-492aa7122a7b" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f5a50ee5-4eed-4bf9-9186-492aa7122a7b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "f5a50ee5-4eed-4bf9-9186-492aa7122a7b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "f5a50ee5-4eed-4bf9-9186-492aa7122a7b" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f568435a-8ed6-4461-ac9c-e23a051e9247" + }, + "attachedElementGuid" : { + "value" : "f5a50ee5-4eed-4bf9-9186-492aa7122a7b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f568435a-8ed6-4461-ac9c-e23a051e9247" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f568435a-8ed6-4461-ac9c-e23a051e9247" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f568435a-8ed6-4461-ac9c-e23a051e9247" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "f568435a-8ed6-4461-ac9c-e23a051e9247" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 47.52005, + "elementName" : "Tap (47.52005)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2af0b4e3-c9ba-4605-a9f6-1c821078fc76" + }, + "attachedElementGuid" : { + "value" : "0c39cf0c-5e96-46b4-9b12-fd17161dcce8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2af0b4e3-c9ba-4605-a9f6-1c821078fc76" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "2af0b4e3-c9ba-4605-a9f6-1c821078fc76" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "2af0b4e3-c9ba-4605-a9f6-1c821078fc76" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b8b92236-dbd4-472f-8aec-177ee745d7ec" + }, + "attachedElementGuid" : { + "value" : "2af0b4e3-c9ba-4605-a9f6-1c821078fc76" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b8b92236-dbd4-472f-8aec-177ee745d7ec" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b8b92236-dbd4-472f-8aec-177ee745d7ec" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b8b92236-dbd4-472f-8aec-177ee745d7ec" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "b8b92236-dbd4-472f-8aec-177ee745d7ec" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 47.57495, + "elementName" : "Stay (47.57495)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "42c37838-6897-4802-86e7-006eec09db94" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "42c37838-6897-4802-86e7-006eec09db94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "42c37838-6897-4802-86e7-006eec09db94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "42c37838-6897-4802-86e7-006eec09db94" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "db52b210-8b18-45b7-ae7f-ef6a68f2edf3" + }, + "attachedElementGuid" : { + "value" : "42c37838-6897-4802-86e7-006eec09db94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "db52b210-8b18-45b7-ae7f-ef6a68f2edf3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "db52b210-8b18-45b7-ae7f-ef6a68f2edf3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "db52b210-8b18-45b7-ae7f-ef6a68f2edf3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "db52b210-8b18-45b7-ae7f-ef6a68f2edf3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 47.62995, + "elementName" : "Stay (47.62995)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "da1cc541-b08c-4671-922e-821504e76075" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "da1cc541-b08c-4671-922e-821504e76075" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "da1cc541-b08c-4671-922e-821504e76075" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "da1cc541-b08c-4671-922e-821504e76075" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "25e5f4ea-e5f8-4f7b-a312-a98d26f2ce73" + }, + "attachedElementGuid" : { + "value" : "da1cc541-b08c-4671-922e-821504e76075" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "25e5f4ea-e5f8-4f7b-a312-a98d26f2ce73" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "25e5f4ea-e5f8-4f7b-a312-a98d26f2ce73" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "25e5f4ea-e5f8-4f7b-a312-a98d26f2ce73" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "25e5f4ea-e5f8-4f7b-a312-a98d26f2ce73" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 47.68495, + "elementName" : "Stay (47.68495)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0ddcff0f-2bc1-41ee-a5ed-54879353c996" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0ddcff0f-2bc1-41ee-a5ed-54879353c996" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "0ddcff0f-2bc1-41ee-a5ed-54879353c996" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "0ddcff0f-2bc1-41ee-a5ed-54879353c996" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "37c98316-7174-4811-8fe7-c63906729898" + }, + "attachedElementGuid" : { + "value" : "0ddcff0f-2bc1-41ee-a5ed-54879353c996" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "37c98316-7174-4811-8fe7-c63906729898" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "37c98316-7174-4811-8fe7-c63906729898" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "37c98316-7174-4811-8fe7-c63906729898" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "37c98316-7174-4811-8fe7-c63906729898" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 47.7399559, + "elementName" : "Stay (47.73996)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fa86b0ab-0307-4fec-a09d-33c973d6d6ce" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fa86b0ab-0307-4fec-a09d-33c973d6d6ce" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "fa86b0ab-0307-4fec-a09d-33c973d6d6ce" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "fa86b0ab-0307-4fec-a09d-33c973d6d6ce" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "be5d3e0d-0da3-416b-bfaa-167a98b5f0d8" + }, + "attachedElementGuid" : { + "value" : "fa86b0ab-0307-4fec-a09d-33c973d6d6ce" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "be5d3e0d-0da3-416b-bfaa-167a98b5f0d8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "be5d3e0d-0da3-416b-bfaa-167a98b5f0d8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "be5d3e0d-0da3-416b-bfaa-167a98b5f0d8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "be5d3e0d-0da3-416b-bfaa-167a98b5f0d8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 47.7949562, + "elementName" : "Stay (47.79496)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "29048a01-ed10-470d-a7ad-6d0bdf84f8a3" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "29048a01-ed10-470d-a7ad-6d0bdf84f8a3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "29048a01-ed10-470d-a7ad-6d0bdf84f8a3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "29048a01-ed10-470d-a7ad-6d0bdf84f8a3" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f71d8b4f-78cb-42c7-b3b7-caf5eeccb01a" + }, + "attachedElementGuid" : { + "value" : "29048a01-ed10-470d-a7ad-6d0bdf84f8a3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f71d8b4f-78cb-42c7-b3b7-caf5eeccb01a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f71d8b4f-78cb-42c7-b3b7-caf5eeccb01a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f71d8b4f-78cb-42c7-b3b7-caf5eeccb01a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "f71d8b4f-78cb-42c7-b3b7-caf5eeccb01a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 47.85, + "elementName" : "Stay (47.84996)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "02da6d11-8c27-4338-b148-2ed7a43d50a9" + }, + "attachedElementGuid" : { + "value" : "dd3c0653-364e-48dd-b003-ccd6ab5a3ba1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "02da6d11-8c27-4338-b148-2ed7a43d50a9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "02da6d11-8c27-4338-b148-2ed7a43d50a9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "02da6d11-8c27-4338-b148-2ed7a43d50a9" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "562fd478-b724-49cc-b2e8-34e51811d826" + }, + "attachedElementGuid" : { + "value" : "02da6d11-8c27-4338-b148-2ed7a43d50a9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "562fd478-b724-49cc-b2e8-34e51811d826" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "562fd478-b724-49cc-b2e8-34e51811d826" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "562fd478-b724-49cc-b2e8-34e51811d826" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "562fd478-b724-49cc-b2e8-34e51811d826" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 47.85, + "elementName" : "Tap (47.85005)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "dffe5702-3a27-4530-bf58-6af658f13755" + }, + "attachedElementGuid" : { + "value" : "0c39cf0c-5e96-46b4-9b12-fd17161dcce8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "dffe5702-3a27-4530-bf58-6af658f13755" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "dffe5702-3a27-4530-bf58-6af658f13755" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "dffe5702-3a27-4530-bf58-6af658f13755" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "53c7c209-a324-48c6-af39-8dbf2dff815f" + }, + "attachedElementGuid" : { + "value" : "dffe5702-3a27-4530-bf58-6af658f13755" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "53c7c209-a324-48c6-af39-8dbf2dff815f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "53c7c209-a324-48c6-af39-8dbf2dff815f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "53c7c209-a324-48c6-af39-8dbf2dff815f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "53c7c209-a324-48c6-af39-8dbf2dff815f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp", + "elementName" : "Rain(0,-15,60)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ec178d19-697d-4ef0-97b8-73f313bd6203" + }, + "attachedElementGuid" : { + "value" : "5b3ef0bf-ccb4-420e-9e01-faf5200340c8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : -15, + "z" : 60 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ec178d19-697d-4ef0-97b8-73f313bd6203" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ec178d19-697d-4ef0-97b8-73f313bd6203" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "r1", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0d696865-37c3-4e41-bef1-cd09033ee1d5" + }, + "attachedElementGuid" : { + "value" : "ec178d19-697d-4ef0-97b8-73f313bd6203" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 180 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0d696865-37c3-4e41-bef1-cd09033ee1d5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0d696865-37c3-4e41-bef1-cd09033ee1d5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 0, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "0d696865-37c3-4e41-bef1-cd09033ee1d5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 0, + "trackEndTime" : 3, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "0d696865-37c3-4e41-bef1-cd09033ee1d5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "854d78a4-759e-4d87-825d-7866838db1b9" + }, + "attachedElementGuid" : { + "value" : "0d696865-37c3-4e41-bef1-cd09033ee1d5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -3, + "y" : 30, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "854d78a4-759e-4d87-825d-7866838db1b9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "854d78a4-759e-4d87-825d-7866838db1b9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "854d78a4-759e-4d87-825d-7866838db1b9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "96639065-03f5-4897-926d-e1cfe96af932" + }, + "attachedElementGuid" : { + "value" : "0d696865-37c3-4e41-bef1-cd09033ee1d5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "96639065-03f5-4897-926d-e1cfe96af932" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "96639065-03f5-4897-926d-e1cfe96af932" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "96639065-03f5-4897-926d-e1cfe96af932" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ParticleTracker_BM,Assembly-CSharp", + "prewarm" : false, + "playTime" : 27, + "stopTime" : 38, + "is3D" : true, + "width" : 40, + "extendDirection" : { + "x" : 2, + "y" : 0, + "z" : 8 + }, + "density" : 20, + "lifeTime" : 3, + "isAutoOrient" : false, + "particleRotation" : { + "x" : 0, + "y" : 0, + "z" : -10 + }, + "materialThemeBundleName" : "basic", + "materialName" : "Basic_Track_Segments", + "elementName" : "New Particle Tracker", + "tags" : [ + + ], + "elementGuid" : { + "value" : "19846154-1ff7-4b05-aa1f-a92a48461bc8" + }, + "attachedElementGuid" : { + "value" : "0d696865-37c3-4e41-bef1-cd09033ee1d5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0.3858937, + "g" : 0.4940961, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "19846154-1ff7-4b05-aa1f-a92a48461bc8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "r2", + "tags" : [ + + ], + "elementGuid" : { + "value" : "813efcb2-b1cc-40a3-9290-0aea331cfa8a" + }, + "attachedElementGuid" : { + "value" : "ec178d19-697d-4ef0-97b8-73f313bd6203" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 540 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "813efcb2-b1cc-40a3-9290-0aea331cfa8a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "813efcb2-b1cc-40a3-9290-0aea331cfa8a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 0, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "813efcb2-b1cc-40a3-9290-0aea331cfa8a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 0, + "trackEndTime" : 3, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "813efcb2-b1cc-40a3-9290-0aea331cfa8a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "93667e9e-6849-457a-af74-4b8ae1f4c8f4" + }, + "attachedElementGuid" : { + "value" : "813efcb2-b1cc-40a3-9290-0aea331cfa8a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -3, + "y" : 30, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "93667e9e-6849-457a-af74-4b8ae1f4c8f4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "93667e9e-6849-457a-af74-4b8ae1f4c8f4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "93667e9e-6849-457a-af74-4b8ae1f4c8f4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "98b3e3cf-406f-4141-a975-d44eff8f1dd9" + }, + "attachedElementGuid" : { + "value" : "813efcb2-b1cc-40a3-9290-0aea331cfa8a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "98b3e3cf-406f-4141-a975-d44eff8f1dd9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "98b3e3cf-406f-4141-a975-d44eff8f1dd9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "98b3e3cf-406f-4141-a975-d44eff8f1dd9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ParticleTracker_BM,Assembly-CSharp", + "prewarm" : false, + "playTime" : 34, + "stopTime" : 45, + "is3D" : true, + "width" : 40, + "extendDirection" : { + "x" : 2, + "y" : 0, + "z" : 8 + }, + "density" : 20, + "lifeTime" : 3, + "isAutoOrient" : false, + "particleRotation" : { + "x" : 0, + "y" : 0, + "z" : -10 + }, + "materialThemeBundleName" : "basic", + "materialName" : "Basic_Track_Segments", + "elementName" : "New Particle Tracker", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cfdb74aa-3dbb-416f-91d0-444d66eb945d" + }, + "attachedElementGuid" : { + "value" : "813efcb2-b1cc-40a3-9290-0aea331cfa8a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0.3858937, + "g" : 0.4940961, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "cfdb74aa-3dbb-416f-91d0-444d66eb945d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp", + "elementName" : "P4{47.85-79.53}(0,0,1454)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5e342b24-6e97-4bda-85aa-cccb3058bc0b" + }, + "attachedElementGuid" : { + "value" : "00000000-0000-0000-0000-000000000000" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 1454 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5e342b24-6e97-4bda-85aa-cccb3058bc0b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5e342b24-6e97-4bda-85aa-cccb3058bc0b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp", + "elementName" : "Note", + "tags" : [ + + ], + "elementGuid" : { + "value" : "faf1d98e-f3af-422f-a6bb-ecd6a8b7dfe7" + }, + "attachedElementGuid" : { + "value" : "5e342b24-6e97-4bda-85aa-cccb3058bc0b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "faf1d98e-f3af-422f-a6bb-ecd6a8b7dfe7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "faf1d98e-f3af-422f-a6bb-ecd6a8b7dfe7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "T1", + "tags" : [ + + ], + "elementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + }, + "attachedElementGuid" : { + "value" : "faf1d98e-f3af-422f-a6bb-ecd6a8b7dfe7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 1, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 47.85, + "trackEndTime" : 79.53, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e1db41cc-ebab-4272-bd8a-4ac789030d33" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e1db41cc-ebab-4272-bd8a-4ac789030d33" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 47.85 + },{ + "value" : false, + "time" : 79.53 + } + ] + }, + "enableProcessTime" : 0, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + { + "startValue" : 79.53, + "endValue" : 5, + "startTime" : 47.85, + "endTime" : 5, + "animationCurveType" : 0 + } + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "31f28340-dec1-4ef9-9494-dcb65ab6a929" + }, + "attachedElementGuid" : { + "value" : "e1db41cc-ebab-4272-bd8a-4ac789030d33" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "31f28340-dec1-4ef9-9494-dcb65ab6a929" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "31f28340-dec1-4ef9-9494-dcb65ab6a929" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0.3965093, + "g" : 0.497728825, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "31f28340-dec1-4ef9-9494-dcb65ab6a929" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode0", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e5646931-d2f0-4780-8bd8-3005701a6839" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -1.5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e5646931-d2f0-4780-8bd8-3005701a6839" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e5646931-d2f0-4780-8bd8-3005701a6839" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e5646931-d2f0-4780-8bd8-3005701a6839" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode1", + "tags" : [ + + ], + "elementGuid" : { + "value" : "127028ff-cc82-43a9-87a5-3ddca54ad553" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -6, + "y" : 0, + "z" : 45 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "127028ff-cc82-43a9-87a5-3ddca54ad553" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "127028ff-cc82-43a9-87a5-3ddca54ad553" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "127028ff-cc82-43a9-87a5-3ddca54ad553" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode2", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3d463f5a-e748-43cb-bf93-3381f437f782" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 90 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3d463f5a-e748-43cb-bf93-3381f437f782" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3d463f5a-e748-43cb-bf93-3381f437f782" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3d463f5a-e748-43cb-bf93-3381f437f782" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode3", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f3a2ca06-c28d-4ab2-9327-75dede62fe72" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 6, + "y" : 0, + "z" : 135 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f3a2ca06-c28d-4ab2-9327-75dede62fe72" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f3a2ca06-c28d-4ab2-9327-75dede62fe72" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f3a2ca06-c28d-4ab2-9327-75dede62fe72" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode4", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b0f9f469-bbda-4a0a-b71b-f446e7c50d41" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 180 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b0f9f469-bbda-4a0a-b71b-f446e7c50d41" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b0f9f469-bbda-4a0a-b71b-f446e7c50d41" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b0f9f469-bbda-4a0a-b71b-f446e7c50d41" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode5", + "tags" : [ + + ], + "elementGuid" : { + "value" : "44b2be99-bfe4-4697-a94b-b2aad4afae2c" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -6, + "y" : 0, + "z" : 225 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "44b2be99-bfe4-4697-a94b-b2aad4afae2c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "44b2be99-bfe4-4697-a94b-b2aad4afae2c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "44b2be99-bfe4-4697-a94b-b2aad4afae2c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode6", + "tags" : [ + + ], + "elementGuid" : { + "value" : "77319d44-8eb7-40e2-908a-5c9fbc47dd6f" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 270 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "77319d44-8eb7-40e2-908a-5c9fbc47dd6f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "77319d44-8eb7-40e2-908a-5c9fbc47dd6f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "77319d44-8eb7-40e2-908a-5c9fbc47dd6f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode7", + "tags" : [ + + ], + "elementGuid" : { + "value" : "266d9224-9233-44b6-9532-2f1a1b4c7044" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 6, + "y" : 0, + "z" : 315 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "266d9224-9233-44b6-9532-2f1a1b4c7044" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "266d9224-9233-44b6-9532-2f1a1b4c7044" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "266d9224-9233-44b6-9532-2f1a1b4c7044" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode8", + "tags" : [ + + ], + "elementGuid" : { + "value" : "567430b3-fec0-4e86-8bad-6305232abef9" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 360 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "567430b3-fec0-4e86-8bad-6305232abef9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "567430b3-fec0-4e86-8bad-6305232abef9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "567430b3-fec0-4e86-8bad-6305232abef9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode9", + "tags" : [ + + ], + "elementGuid" : { + "value" : "373939d1-2fb5-4c8e-a8ec-b4915dcf9af3" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -6, + "y" : 0, + "z" : 405 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "373939d1-2fb5-4c8e-a8ec-b4915dcf9af3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "373939d1-2fb5-4c8e-a8ec-b4915dcf9af3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "373939d1-2fb5-4c8e-a8ec-b4915dcf9af3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode10", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b7589125-3194-484f-8514-e4c71b074f0c" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 450 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b7589125-3194-484f-8514-e4c71b074f0c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b7589125-3194-484f-8514-e4c71b074f0c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b7589125-3194-484f-8514-e4c71b074f0c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode11", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a19afcf1-de2b-4f2a-a041-404b64792f26" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 6, + "y" : 0, + "z" : 495 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a19afcf1-de2b-4f2a-a041-404b64792f26" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a19afcf1-de2b-4f2a-a041-404b64792f26" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a19afcf1-de2b-4f2a-a041-404b64792f26" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode12", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f61aa55c-b2b1-4888-bff5-435c591785ee" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 540 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f61aa55c-b2b1-4888-bff5-435c591785ee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f61aa55c-b2b1-4888-bff5-435c591785ee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f61aa55c-b2b1-4888-bff5-435c591785ee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode13", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e1f74a51-b747-4eba-a972-a5c039da8a84" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -6, + "y" : 0, + "z" : 585 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e1f74a51-b747-4eba-a972-a5c039da8a84" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e1f74a51-b747-4eba-a972-a5c039da8a84" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e1f74a51-b747-4eba-a972-a5c039da8a84" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode14", + "tags" : [ + + ], + "elementGuid" : { + "value" : "380412f9-3c03-4060-b7e3-d2c6ff35a27a" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 630 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "380412f9-3c03-4060-b7e3-d2c6ff35a27a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "380412f9-3c03-4060-b7e3-d2c6ff35a27a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "380412f9-3c03-4060-b7e3-d2c6ff35a27a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode15", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3779f687-a8d4-4810-ac3b-f8f85cf11cc5" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 6, + "y" : 0, + "z" : 675 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3779f687-a8d4-4810-ac3b-f8f85cf11cc5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3779f687-a8d4-4810-ac3b-f8f85cf11cc5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3779f687-a8d4-4810-ac3b-f8f85cf11cc5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode16", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f86f4730-9664-483c-bdb8-63fc8aeab5ab" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 720 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f86f4730-9664-483c-bdb8-63fc8aeab5ab" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f86f4730-9664-483c-bdb8-63fc8aeab5ab" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f86f4730-9664-483c-bdb8-63fc8aeab5ab" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode17", + "tags" : [ + + ], + "elementGuid" : { + "value" : "441d46ec-79b4-478f-953c-464ed1af127a" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -6, + "y" : 3, + "z" : 765 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "441d46ec-79b4-478f-953c-464ed1af127a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "441d46ec-79b4-478f-953c-464ed1af127a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "441d46ec-79b4-478f-953c-464ed1af127a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode18", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3532943b-fe91-4236-a7c2-5ea3dc066686" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 810 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3532943b-fe91-4236-a7c2-5ea3dc066686" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3532943b-fe91-4236-a7c2-5ea3dc066686" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3532943b-fe91-4236-a7c2-5ea3dc066686" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode19", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4d26b45d-ef6d-4d03-a712-4efbe4efb879" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 4, + "y" : 0, + "z" : 855 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4d26b45d-ef6d-4d03-a712-4efbe4efb879" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4d26b45d-ef6d-4d03-a712-4efbe4efb879" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4d26b45d-ef6d-4d03-a712-4efbe4efb879" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode20", + "tags" : [ + + ], + "elementGuid" : { + "value" : "01b181f7-8158-4c44-85a6-8e78999d9073" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 900 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "01b181f7-8158-4c44-85a6-8e78999d9073" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "01b181f7-8158-4c44-85a6-8e78999d9073" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "01b181f7-8158-4c44-85a6-8e78999d9073" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode21", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bd92ac7f-b4a7-4cf7-88ec-1f7c2e01d45e" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -6, + "y" : 3, + "z" : 945 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "bd92ac7f-b4a7-4cf7-88ec-1f7c2e01d45e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bd92ac7f-b4a7-4cf7-88ec-1f7c2e01d45e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "bd92ac7f-b4a7-4cf7-88ec-1f7c2e01d45e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode22", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4d45617a-1ee0-421f-8df3-c30085bf6505" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 990 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4d45617a-1ee0-421f-8df3-c30085bf6505" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4d45617a-1ee0-421f-8df3-c30085bf6505" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4d45617a-1ee0-421f-8df3-c30085bf6505" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode23", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e2d33a0d-9c6e-4553-9a7b-b6b2f5fdba0b" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 4, + "y" : 0, + "z" : 1035 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e2d33a0d-9c6e-4553-9a7b-b6b2f5fdba0b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e2d33a0d-9c6e-4553-9a7b-b6b2f5fdba0b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e2d33a0d-9c6e-4553-9a7b-b6b2f5fdba0b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode24", + "tags" : [ + + ], + "elementGuid" : { + "value" : "475c5eb6-a915-4cfc-a6b6-1502f41adca4" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 1080 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "475c5eb6-a915-4cfc-a6b6-1502f41adca4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "475c5eb6-a915-4cfc-a6b6-1502f41adca4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "475c5eb6-a915-4cfc-a6b6-1502f41adca4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode25", + "tags" : [ + + ], + "elementGuid" : { + "value" : "889b740e-d5c0-4c08-be42-2f60b019db41" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -6, + "y" : 3, + "z" : 1125 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "889b740e-d5c0-4c08-be42-2f60b019db41" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "889b740e-d5c0-4c08-be42-2f60b019db41" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "889b740e-d5c0-4c08-be42-2f60b019db41" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode26", + "tags" : [ + + ], + "elementGuid" : { + "value" : "899eebd6-decd-45bb-a8f8-02a7f74538ae" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 1170 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "899eebd6-decd-45bb-a8f8-02a7f74538ae" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "899eebd6-decd-45bb-a8f8-02a7f74538ae" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "899eebd6-decd-45bb-a8f8-02a7f74538ae" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode27", + "tags" : [ + + ], + "elementGuid" : { + "value" : "41d9aa2a-4100-4a6b-b3e5-b53fe63e6224" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 4, + "y" : 0, + "z" : 1215 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "41d9aa2a-4100-4a6b-b3e5-b53fe63e6224" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "41d9aa2a-4100-4a6b-b3e5-b53fe63e6224" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "41d9aa2a-4100-4a6b-b3e5-b53fe63e6224" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode28", + "tags" : [ + + ], + "elementGuid" : { + "value" : "dfceff5a-c970-4353-afaf-1789b2aa0e84" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 1260 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "dfceff5a-c970-4353-afaf-1789b2aa0e84" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "dfceff5a-c970-4353-afaf-1789b2aa0e84" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "dfceff5a-c970-4353-afaf-1789b2aa0e84" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode29", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f16c67a3-dfd2-4d5c-86e1-5050949a5d8a" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -6, + "y" : 3, + "z" : 1305 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f16c67a3-dfd2-4d5c-86e1-5050949a5d8a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f16c67a3-dfd2-4d5c-86e1-5050949a5d8a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f16c67a3-dfd2-4d5c-86e1-5050949a5d8a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode30", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8c577754-0d32-4a37-aca1-6aabec8293ad" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 1350 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8c577754-0d32-4a37-aca1-6aabec8293ad" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8c577754-0d32-4a37-aca1-6aabec8293ad" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8c577754-0d32-4a37-aca1-6aabec8293ad" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode31", + "tags" : [ + + ], + "elementGuid" : { + "value" : "05bae0ed-98af-49e4-a4d0-3828f01e1fd6" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 4, + "y" : 0, + "z" : 1395 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "05bae0ed-98af-49e4-a4d0-3828f01e1fd6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "05bae0ed-98af-49e4-a4d0-3828f01e1fd6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "05bae0ed-98af-49e4-a4d0-3828f01e1fd6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode32", + "tags" : [ + + ], + "elementGuid" : { + "value" : "70ea8d4f-6772-4339-8a9a-a5c4724f8020" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 1440 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "70ea8d4f-6772-4339-8a9a-a5c4724f8020" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "70ea8d4f-6772-4339-8a9a-a5c4724f8020" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "70ea8d4f-6772-4339-8a9a-a5c4724f8020" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "T2", + "tags" : [ + + ], + "elementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + }, + "attachedElementGuid" : { + "value" : "faf1d98e-f3af-422f-a6bb-ecd6a8b7dfe7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 1, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 47.85, + "trackEndTime" : 79.53, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f0c76f44-fdc3-45a2-b922-0cb28a0610d0" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f0c76f44-fdc3-45a2-b922-0cb28a0610d0" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 47.85 + },{ + "value" : false, + "time" : 79.53 + } + ] + }, + "enableProcessTime" : 0, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + { + "startValue" : 79.53, + "endValue" : 5, + "startTime" : 47.85, + "endTime" : 5, + "animationCurveType" : 0 + } + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fcf8fa40-724e-41ed-9a6e-39fb4499092d" + }, + "attachedElementGuid" : { + "value" : "f0c76f44-fdc3-45a2-b922-0cb28a0610d0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "fcf8fa40-724e-41ed-9a6e-39fb4499092d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fcf8fa40-724e-41ed-9a6e-39fb4499092d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0.3965093, + "g" : 0.497728825, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "fcf8fa40-724e-41ed-9a6e-39fb4499092d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode0", + "tags" : [ + + ], + "elementGuid" : { + "value" : "63987a6f-4886-445d-9f70-d16dd2e1b27a" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 1.5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "63987a6f-4886-445d-9f70-d16dd2e1b27a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "63987a6f-4886-445d-9f70-d16dd2e1b27a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "63987a6f-4886-445d-9f70-d16dd2e1b27a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode1", + "tags" : [ + + ], + "elementGuid" : { + "value" : "79dfa1a9-e80e-4d57-aa26-300ec7f1d16a" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 6, + "y" : 0, + "z" : 45 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "79dfa1a9-e80e-4d57-aa26-300ec7f1d16a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "79dfa1a9-e80e-4d57-aa26-300ec7f1d16a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "79dfa1a9-e80e-4d57-aa26-300ec7f1d16a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode2", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2bac9663-75cb-4220-93f1-128bd4afe7a2" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 90 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2bac9663-75cb-4220-93f1-128bd4afe7a2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2bac9663-75cb-4220-93f1-128bd4afe7a2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "2bac9663-75cb-4220-93f1-128bd4afe7a2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode3", + "tags" : [ + + ], + "elementGuid" : { + "value" : "03327294-5f9d-4345-90e0-89fd23a27e39" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -6, + "y" : 0, + "z" : 135 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "03327294-5f9d-4345-90e0-89fd23a27e39" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "03327294-5f9d-4345-90e0-89fd23a27e39" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "03327294-5f9d-4345-90e0-89fd23a27e39" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode4", + "tags" : [ + + ], + "elementGuid" : { + "value" : "416fc785-a400-4b5d-8a97-88f5096c1494" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 180 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "416fc785-a400-4b5d-8a97-88f5096c1494" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "416fc785-a400-4b5d-8a97-88f5096c1494" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "416fc785-a400-4b5d-8a97-88f5096c1494" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode5", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d28b7a69-b53f-4ee8-b7ad-5afd24fb3236" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 6, + "y" : 0, + "z" : 225 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d28b7a69-b53f-4ee8-b7ad-5afd24fb3236" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d28b7a69-b53f-4ee8-b7ad-5afd24fb3236" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d28b7a69-b53f-4ee8-b7ad-5afd24fb3236" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode6", + "tags" : [ + + ], + "elementGuid" : { + "value" : "77b90c16-7ec4-48ab-a325-6e45004c0f74" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 270 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "77b90c16-7ec4-48ab-a325-6e45004c0f74" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "77b90c16-7ec4-48ab-a325-6e45004c0f74" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "77b90c16-7ec4-48ab-a325-6e45004c0f74" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode7", + "tags" : [ + + ], + "elementGuid" : { + "value" : "79499696-127e-4e94-98bd-d34a8c7c782f" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -6, + "y" : 0, + "z" : 315 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "79499696-127e-4e94-98bd-d34a8c7c782f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "79499696-127e-4e94-98bd-d34a8c7c782f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "79499696-127e-4e94-98bd-d34a8c7c782f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode8", + "tags" : [ + + ], + "elementGuid" : { + "value" : "66c3dfe4-3bd2-46be-88bf-89e9b3e1a1be" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 360 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "66c3dfe4-3bd2-46be-88bf-89e9b3e1a1be" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "66c3dfe4-3bd2-46be-88bf-89e9b3e1a1be" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "66c3dfe4-3bd2-46be-88bf-89e9b3e1a1be" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode9", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bb91e875-2939-4c67-b046-584f95528662" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 6, + "y" : 0, + "z" : 405 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "bb91e875-2939-4c67-b046-584f95528662" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bb91e875-2939-4c67-b046-584f95528662" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "bb91e875-2939-4c67-b046-584f95528662" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode10", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a7ba81b3-4aef-4e56-b50f-a1e711b79ae0" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 450 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a7ba81b3-4aef-4e56-b50f-a1e711b79ae0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a7ba81b3-4aef-4e56-b50f-a1e711b79ae0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a7ba81b3-4aef-4e56-b50f-a1e711b79ae0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode11", + "tags" : [ + + ], + "elementGuid" : { + "value" : "59bc0e25-2bf0-413a-b8b4-e70e6c2fce2c" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -6, + "y" : 0, + "z" : 495 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "59bc0e25-2bf0-413a-b8b4-e70e6c2fce2c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "59bc0e25-2bf0-413a-b8b4-e70e6c2fce2c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "59bc0e25-2bf0-413a-b8b4-e70e6c2fce2c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode12", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1c427d1d-e84a-42e9-8f2e-a609e976700b" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 540 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "1c427d1d-e84a-42e9-8f2e-a609e976700b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1c427d1d-e84a-42e9-8f2e-a609e976700b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "1c427d1d-e84a-42e9-8f2e-a609e976700b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode13", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2ad59621-753c-4cf0-bff1-37651d97659d" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 6, + "y" : 0, + "z" : 585 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2ad59621-753c-4cf0-bff1-37651d97659d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2ad59621-753c-4cf0-bff1-37651d97659d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "2ad59621-753c-4cf0-bff1-37651d97659d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode14", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d773036b-71d6-407f-bfe0-5dc36a33aefb" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 630 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d773036b-71d6-407f-bfe0-5dc36a33aefb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d773036b-71d6-407f-bfe0-5dc36a33aefb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d773036b-71d6-407f-bfe0-5dc36a33aefb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode15", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ff369a06-a506-411d-959c-fe2f59b8d3a6" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -6, + "y" : 0, + "z" : 675 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ff369a06-a506-411d-959c-fe2f59b8d3a6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ff369a06-a506-411d-959c-fe2f59b8d3a6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ff369a06-a506-411d-959c-fe2f59b8d3a6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode16", + "tags" : [ + + ], + "elementGuid" : { + "value" : "72e59419-cb63-4827-bb88-da60b1f33be5" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2.4, + "y" : 0, + "z" : 720 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "72e59419-cb63-4827-bb88-da60b1f33be5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "72e59419-cb63-4827-bb88-da60b1f33be5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "72e59419-cb63-4827-bb88-da60b1f33be5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode17", + "tags" : [ + + ], + "elementGuid" : { + "value" : "54fac709-68b5-4f98-bd57-e4b000b0d90e" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -4, + "y" : 0, + "z" : 765 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "54fac709-68b5-4f98-bd57-e4b000b0d90e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "54fac709-68b5-4f98-bd57-e4b000b0d90e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "54fac709-68b5-4f98-bd57-e4b000b0d90e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode18", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d153425e-43fc-4bd5-afd0-c270ba8b2330" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 810 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d153425e-43fc-4bd5-afd0-c270ba8b2330" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d153425e-43fc-4bd5-afd0-c270ba8b2330" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d153425e-43fc-4bd5-afd0-c270ba8b2330" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode19", + "tags" : [ + + ], + "elementGuid" : { + "value" : "360b4dd8-6ffd-4d77-98be-ebc6947083ae" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 6, + "y" : 3, + "z" : 855 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "360b4dd8-6ffd-4d77-98be-ebc6947083ae" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "360b4dd8-6ffd-4d77-98be-ebc6947083ae" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "360b4dd8-6ffd-4d77-98be-ebc6947083ae" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode20", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c6e62fbf-f91a-4218-bf0a-a4a103f2247c" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 900 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c6e62fbf-f91a-4218-bf0a-a4a103f2247c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c6e62fbf-f91a-4218-bf0a-a4a103f2247c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c6e62fbf-f91a-4218-bf0a-a4a103f2247c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode21", + "tags" : [ + + ], + "elementGuid" : { + "value" : "168649d2-3661-4826-abdf-f905d1beb2fd" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -4, + "y" : 0, + "z" : 945 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "168649d2-3661-4826-abdf-f905d1beb2fd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "168649d2-3661-4826-abdf-f905d1beb2fd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "168649d2-3661-4826-abdf-f905d1beb2fd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode22", + "tags" : [ + + ], + "elementGuid" : { + "value" : "36061ae5-4d43-4730-a0ac-b7ec6e0f1685" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 990 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "36061ae5-4d43-4730-a0ac-b7ec6e0f1685" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "36061ae5-4d43-4730-a0ac-b7ec6e0f1685" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "36061ae5-4d43-4730-a0ac-b7ec6e0f1685" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode23", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7364c58a-cf70-406d-acc1-a251beb76418" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 6, + "y" : 3, + "z" : 1035 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7364c58a-cf70-406d-acc1-a251beb76418" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7364c58a-cf70-406d-acc1-a251beb76418" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "7364c58a-cf70-406d-acc1-a251beb76418" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode24", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8135116c-ecdb-4a62-9037-353fd3f950e2" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 1080 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8135116c-ecdb-4a62-9037-353fd3f950e2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8135116c-ecdb-4a62-9037-353fd3f950e2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8135116c-ecdb-4a62-9037-353fd3f950e2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode25", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f56394e4-a0be-471c-8b4a-f280ad60c4d6" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -4, + "y" : 0, + "z" : 1125 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f56394e4-a0be-471c-8b4a-f280ad60c4d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f56394e4-a0be-471c-8b4a-f280ad60c4d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f56394e4-a0be-471c-8b4a-f280ad60c4d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode26", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fcffaa58-3d88-4d3b-b10f-8de3ba65065d" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 1170 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "fcffaa58-3d88-4d3b-b10f-8de3ba65065d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fcffaa58-3d88-4d3b-b10f-8de3ba65065d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "fcffaa58-3d88-4d3b-b10f-8de3ba65065d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode27", + "tags" : [ + + ], + "elementGuid" : { + "value" : "22c8f3aa-6c03-43a1-b264-93e49c4676ee" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 6, + "y" : 3, + "z" : 1215 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "22c8f3aa-6c03-43a1-b264-93e49c4676ee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "22c8f3aa-6c03-43a1-b264-93e49c4676ee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "22c8f3aa-6c03-43a1-b264-93e49c4676ee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode28", + "tags" : [ + + ], + "elementGuid" : { + "value" : "92e73fd7-41ee-4384-adfe-803f596d51e2" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 1260 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "92e73fd7-41ee-4384-adfe-803f596d51e2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "92e73fd7-41ee-4384-adfe-803f596d51e2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "92e73fd7-41ee-4384-adfe-803f596d51e2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode29", + "tags" : [ + + ], + "elementGuid" : { + "value" : "daf3fc0c-7e36-4641-b829-36d10f45aed8" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -4, + "y" : 0, + "z" : 1305 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "daf3fc0c-7e36-4641-b829-36d10f45aed8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "daf3fc0c-7e36-4641-b829-36d10f45aed8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "daf3fc0c-7e36-4641-b829-36d10f45aed8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode30", + "tags" : [ + + ], + "elementGuid" : { + "value" : "155dc469-56db-4f1a-af0d-07bf998bc9c4" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 1350 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "155dc469-56db-4f1a-af0d-07bf998bc9c4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "155dc469-56db-4f1a-af0d-07bf998bc9c4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "155dc469-56db-4f1a-af0d-07bf998bc9c4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode31", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5f7a3737-0263-4f66-88b2-addf2b4136b5" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 6, + "y" : 3, + "z" : 1395 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5f7a3737-0263-4f66-88b2-addf2b4136b5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5f7a3737-0263-4f66-88b2-addf2b4136b5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5f7a3737-0263-4f66-88b2-addf2b4136b5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode32", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e2175bdd-4122-40a3-a950-293025f1b4f1" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 1440 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e2175bdd-4122-40a3-a950-293025f1b4f1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e2175bdd-4122-40a3-a950-293025f1b4f1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e2175bdd-4122-40a3-a950-293025f1b4f1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "47.85-79.53", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b805884c-1def-419b-bbbc-e9b7638e7af1" + }, + "attachedElementGuid" : { + "value" : "f090c03d-7b08-4ec2-94d5-6e4baa1c4af1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b805884c-1def-419b-bbbc-e9b7638e7af1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b805884c-1def-419b-bbbc-e9b7638e7af1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 0, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "b805884c-1def-419b-bbbc-e9b7638e7af1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 47.85, + "trackEndTime" : 79.53, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "b805884c-1def-419b-bbbc-e9b7638e7af1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a1248c38-facc-46e4-8425-d175c57a67ed" + }, + "attachedElementGuid" : { + "value" : "b805884c-1def-419b-bbbc-e9b7638e7af1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 1447.5 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a1248c38-facc-46e4-8425-d175c57a67ed" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a1248c38-facc-46e4-8425-d175c57a67ed" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a1248c38-facc-46e4-8425-d175c57a67ed" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "dc12473c-a315-4830-9461-b468554a0471" + }, + "attachedElementGuid" : { + "value" : "b805884c-1def-419b-bbbc-e9b7638e7af1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 2887.5 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "dc12473c-a315-4830-9461-b468554a0471" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "dc12473c-a315-4830-9461-b468554a0471" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "dc12473c-a315-4830-9461-b468554a0471" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp", + "elementName" : "Note_guide", + "tags" : [ + + ], + "elementGuid" : { + "value" : "dfa2bcac-e1f2-44fd-a810-1a0190238d80" + }, + "attachedElementGuid" : { + "value" : "5e342b24-6e97-4bda-85aa-cccb3058bc0b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "dfa2bcac-e1f2-44fd-a810-1a0190238d80" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "dfa2bcac-e1f2-44fd-a810-1a0190238d80" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "T1", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6c97a491-53ed-4340-8205-a93bcff3c16a" + }, + "attachedElementGuid" : { + "value" : "dfa2bcac-e1f2-44fd-a810-1a0190238d80" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6c97a491-53ed-4340-8205-a93bcff3c16a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6c97a491-53ed-4340-8205-a93bcff3c16a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 1, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "6c97a491-53ed-4340-8205-a93bcff3c16a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 46.35, + "trackEndTime" : 78.03, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "6c97a491-53ed-4340-8205-a93bcff3c16a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "82123fba-fc7a-4730-90d4-4c1e8ed2a4ea" + }, + "attachedElementGuid" : { + "value" : "6c97a491-53ed-4340-8205-a93bcff3c16a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "82123fba-fc7a-4730-90d4-4c1e8ed2a4ea" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : false, + "time" : 47.85 + },{ + "value" : false, + "time" : 79.53 + } + ] + }, + "enableProcessTime" : 0, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + { + "startValue" : 79.53, + "endValue" : 5, + "startTime" : 47.85, + "endTime" : 5, + "animationCurveType" : 0 + } + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b0bc8660-2706-409e-839a-c894d2fcb035" + }, + "attachedElementGuid" : { + "value" : "82123fba-fc7a-4730-90d4-4c1e8ed2a4ea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b0bc8660-2706-409e-839a-c894d2fcb035" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b0bc8660-2706-409e-839a-c894d2fcb035" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0.5, + "g" : 0.8, + "b" : 1, + "a" : 0.5 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "b0bc8660-2706-409e-839a-c894d2fcb035" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode0", + "tags" : [ + + ], + "elementGuid" : { + "value" : "782b7a2f-9e9c-4eae-b2a8-edc9c57e9964" + }, + "attachedElementGuid" : { + "value" : "6c97a491-53ed-4340-8205-a93bcff3c16a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -1.5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "782b7a2f-9e9c-4eae-b2a8-edc9c57e9964" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "782b7a2f-9e9c-4eae-b2a8-edc9c57e9964" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "782b7a2f-9e9c-4eae-b2a8-edc9c57e9964" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode1", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ba441323-2d89-4e38-9531-acfe168fdef3" + }, + "attachedElementGuid" : { + "value" : "6c97a491-53ed-4340-8205-a93bcff3c16a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -6, + "y" : 0, + "z" : 45 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ba441323-2d89-4e38-9531-acfe168fdef3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ba441323-2d89-4e38-9531-acfe168fdef3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ba441323-2d89-4e38-9531-acfe168fdef3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode2", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0ac5e451-68a9-416a-b51a-f8c0794d0a36" + }, + "attachedElementGuid" : { + "value" : "6c97a491-53ed-4340-8205-a93bcff3c16a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 90 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0ac5e451-68a9-416a-b51a-f8c0794d0a36" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0ac5e451-68a9-416a-b51a-f8c0794d0a36" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0ac5e451-68a9-416a-b51a-f8c0794d0a36" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode3", + "tags" : [ + + ], + "elementGuid" : { + "value" : "568d58a5-e898-4616-a969-ef295f57aa5d" + }, + "attachedElementGuid" : { + "value" : "6c97a491-53ed-4340-8205-a93bcff3c16a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 6, + "y" : 0, + "z" : 135 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "568d58a5-e898-4616-a969-ef295f57aa5d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "568d58a5-e898-4616-a969-ef295f57aa5d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "568d58a5-e898-4616-a969-ef295f57aa5d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode4", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5d934ac4-9212-46ab-b3ae-ed8958c661ca" + }, + "attachedElementGuid" : { + "value" : "6c97a491-53ed-4340-8205-a93bcff3c16a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 180 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5d934ac4-9212-46ab-b3ae-ed8958c661ca" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5d934ac4-9212-46ab-b3ae-ed8958c661ca" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5d934ac4-9212-46ab-b3ae-ed8958c661ca" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode5", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ceaf7f69-d9ee-455e-9721-17b17044a209" + }, + "attachedElementGuid" : { + "value" : "6c97a491-53ed-4340-8205-a93bcff3c16a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -6, + "y" : 0, + "z" : 225 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ceaf7f69-d9ee-455e-9721-17b17044a209" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ceaf7f69-d9ee-455e-9721-17b17044a209" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ceaf7f69-d9ee-455e-9721-17b17044a209" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode6", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9f1f98f5-edcd-4aec-b871-635f0b6588ab" + }, + "attachedElementGuid" : { + "value" : "6c97a491-53ed-4340-8205-a93bcff3c16a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 270 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9f1f98f5-edcd-4aec-b871-635f0b6588ab" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9f1f98f5-edcd-4aec-b871-635f0b6588ab" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "9f1f98f5-edcd-4aec-b871-635f0b6588ab" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode7", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b3178cef-d5a0-4d34-a33a-83c4fc93ce87" + }, + "attachedElementGuid" : { + "value" : "6c97a491-53ed-4340-8205-a93bcff3c16a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 6, + "y" : 0, + "z" : 315 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b3178cef-d5a0-4d34-a33a-83c4fc93ce87" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b3178cef-d5a0-4d34-a33a-83c4fc93ce87" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b3178cef-d5a0-4d34-a33a-83c4fc93ce87" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode8", + "tags" : [ + + ], + "elementGuid" : { + "value" : "603c2534-6f51-480e-9cb8-ca2a6995142a" + }, + "attachedElementGuid" : { + "value" : "6c97a491-53ed-4340-8205-a93bcff3c16a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 360 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "603c2534-6f51-480e-9cb8-ca2a6995142a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "603c2534-6f51-480e-9cb8-ca2a6995142a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "603c2534-6f51-480e-9cb8-ca2a6995142a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode9", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4299908e-fe0d-4862-a118-a472ee608ebb" + }, + "attachedElementGuid" : { + "value" : "6c97a491-53ed-4340-8205-a93bcff3c16a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -6, + "y" : 0, + "z" : 405 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4299908e-fe0d-4862-a118-a472ee608ebb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4299908e-fe0d-4862-a118-a472ee608ebb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4299908e-fe0d-4862-a118-a472ee608ebb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode10", + "tags" : [ + + ], + "elementGuid" : { + "value" : "41656052-f003-4e74-8307-8d60d097bf60" + }, + "attachedElementGuid" : { + "value" : "6c97a491-53ed-4340-8205-a93bcff3c16a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 450 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "41656052-f003-4e74-8307-8d60d097bf60" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "41656052-f003-4e74-8307-8d60d097bf60" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "41656052-f003-4e74-8307-8d60d097bf60" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode11", + "tags" : [ + + ], + "elementGuid" : { + "value" : "48c4233e-02a4-4668-8452-a9e49b626081" + }, + "attachedElementGuid" : { + "value" : "6c97a491-53ed-4340-8205-a93bcff3c16a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 6, + "y" : 0, + "z" : 495 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "48c4233e-02a4-4668-8452-a9e49b626081" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "48c4233e-02a4-4668-8452-a9e49b626081" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "48c4233e-02a4-4668-8452-a9e49b626081" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode12", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cde79bf5-65f3-48c6-b09a-f74fec8a746a" + }, + "attachedElementGuid" : { + "value" : "6c97a491-53ed-4340-8205-a93bcff3c16a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 540 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "cde79bf5-65f3-48c6-b09a-f74fec8a746a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "cde79bf5-65f3-48c6-b09a-f74fec8a746a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "cde79bf5-65f3-48c6-b09a-f74fec8a746a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode13", + "tags" : [ + + ], + "elementGuid" : { + "value" : "86c8080e-95b6-421d-8a89-eb3e5d1b78e3" + }, + "attachedElementGuid" : { + "value" : "6c97a491-53ed-4340-8205-a93bcff3c16a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -6, + "y" : 0, + "z" : 585 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "86c8080e-95b6-421d-8a89-eb3e5d1b78e3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "86c8080e-95b6-421d-8a89-eb3e5d1b78e3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "86c8080e-95b6-421d-8a89-eb3e5d1b78e3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode14", + "tags" : [ + + ], + "elementGuid" : { + "value" : "eadcd691-909a-4998-a639-e238d2278d99" + }, + "attachedElementGuid" : { + "value" : "6c97a491-53ed-4340-8205-a93bcff3c16a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 630 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "eadcd691-909a-4998-a639-e238d2278d99" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "eadcd691-909a-4998-a639-e238d2278d99" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "eadcd691-909a-4998-a639-e238d2278d99" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode15", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8872f54b-21cc-42a5-a031-09933ac46a46" + }, + "attachedElementGuid" : { + "value" : "6c97a491-53ed-4340-8205-a93bcff3c16a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 6, + "y" : 0, + "z" : 675 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8872f54b-21cc-42a5-a031-09933ac46a46" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8872f54b-21cc-42a5-a031-09933ac46a46" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8872f54b-21cc-42a5-a031-09933ac46a46" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode16", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3d32eb08-a39f-4300-b058-836fc4510b9b" + }, + "attachedElementGuid" : { + "value" : "6c97a491-53ed-4340-8205-a93bcff3c16a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 720 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3d32eb08-a39f-4300-b058-836fc4510b9b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3d32eb08-a39f-4300-b058-836fc4510b9b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3d32eb08-a39f-4300-b058-836fc4510b9b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode17", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2840b312-e467-4d3f-94b7-490ad8c5a101" + }, + "attachedElementGuid" : { + "value" : "6c97a491-53ed-4340-8205-a93bcff3c16a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -6, + "y" : 3, + "z" : 765 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2840b312-e467-4d3f-94b7-490ad8c5a101" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2840b312-e467-4d3f-94b7-490ad8c5a101" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "2840b312-e467-4d3f-94b7-490ad8c5a101" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode18", + "tags" : [ + + ], + "elementGuid" : { + "value" : "05d211d2-d286-4a19-a902-3600f48b3a3c" + }, + "attachedElementGuid" : { + "value" : "6c97a491-53ed-4340-8205-a93bcff3c16a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 810 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "05d211d2-d286-4a19-a902-3600f48b3a3c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "05d211d2-d286-4a19-a902-3600f48b3a3c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "05d211d2-d286-4a19-a902-3600f48b3a3c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode19", + "tags" : [ + + ], + "elementGuid" : { + "value" : "629f06e0-0d2f-481f-b58d-7d12c553e3e9" + }, + "attachedElementGuid" : { + "value" : "6c97a491-53ed-4340-8205-a93bcff3c16a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 4, + "y" : 0, + "z" : 855 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "629f06e0-0d2f-481f-b58d-7d12c553e3e9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "629f06e0-0d2f-481f-b58d-7d12c553e3e9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "629f06e0-0d2f-481f-b58d-7d12c553e3e9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode20", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c6524704-e8a0-48a3-acb5-8fcc107f004f" + }, + "attachedElementGuid" : { + "value" : "6c97a491-53ed-4340-8205-a93bcff3c16a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 900 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c6524704-e8a0-48a3-acb5-8fcc107f004f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c6524704-e8a0-48a3-acb5-8fcc107f004f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c6524704-e8a0-48a3-acb5-8fcc107f004f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode21", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9ba836e5-a885-4df0-9f20-7d350f23912f" + }, + "attachedElementGuid" : { + "value" : "6c97a491-53ed-4340-8205-a93bcff3c16a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -6, + "y" : 3, + "z" : 945 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9ba836e5-a885-4df0-9f20-7d350f23912f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9ba836e5-a885-4df0-9f20-7d350f23912f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "9ba836e5-a885-4df0-9f20-7d350f23912f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode22", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0f2a97fd-41d4-4034-862c-a305da59a928" + }, + "attachedElementGuid" : { + "value" : "6c97a491-53ed-4340-8205-a93bcff3c16a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 990 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0f2a97fd-41d4-4034-862c-a305da59a928" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0f2a97fd-41d4-4034-862c-a305da59a928" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0f2a97fd-41d4-4034-862c-a305da59a928" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode23", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5a881e22-1179-49db-99a2-7405e3440491" + }, + "attachedElementGuid" : { + "value" : "6c97a491-53ed-4340-8205-a93bcff3c16a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 4, + "y" : 0, + "z" : 1035 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5a881e22-1179-49db-99a2-7405e3440491" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5a881e22-1179-49db-99a2-7405e3440491" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5a881e22-1179-49db-99a2-7405e3440491" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode24", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6281d266-c0f1-4f3f-b57b-d103d4b1ef54" + }, + "attachedElementGuid" : { + "value" : "6c97a491-53ed-4340-8205-a93bcff3c16a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 1080 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6281d266-c0f1-4f3f-b57b-d103d4b1ef54" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6281d266-c0f1-4f3f-b57b-d103d4b1ef54" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6281d266-c0f1-4f3f-b57b-d103d4b1ef54" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode25", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ba41ad80-2b6a-42aa-8d10-40c3784e4a38" + }, + "attachedElementGuid" : { + "value" : "6c97a491-53ed-4340-8205-a93bcff3c16a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -6, + "y" : 3, + "z" : 1125 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ba41ad80-2b6a-42aa-8d10-40c3784e4a38" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ba41ad80-2b6a-42aa-8d10-40c3784e4a38" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ba41ad80-2b6a-42aa-8d10-40c3784e4a38" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode26", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0150daea-f81a-4537-b70f-a1b958d41e6c" + }, + "attachedElementGuid" : { + "value" : "6c97a491-53ed-4340-8205-a93bcff3c16a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 1170 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0150daea-f81a-4537-b70f-a1b958d41e6c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0150daea-f81a-4537-b70f-a1b958d41e6c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0150daea-f81a-4537-b70f-a1b958d41e6c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode27", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7014da4e-e94b-4458-b7b6-c2b66583a443" + }, + "attachedElementGuid" : { + "value" : "6c97a491-53ed-4340-8205-a93bcff3c16a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 4, + "y" : 0, + "z" : 1215 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7014da4e-e94b-4458-b7b6-c2b66583a443" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7014da4e-e94b-4458-b7b6-c2b66583a443" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "7014da4e-e94b-4458-b7b6-c2b66583a443" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode28", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f7a82856-8e49-46ae-9683-54913ae816a0" + }, + "attachedElementGuid" : { + "value" : "6c97a491-53ed-4340-8205-a93bcff3c16a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 1260 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f7a82856-8e49-46ae-9683-54913ae816a0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f7a82856-8e49-46ae-9683-54913ae816a0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f7a82856-8e49-46ae-9683-54913ae816a0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode29", + "tags" : [ + + ], + "elementGuid" : { + "value" : "534af4d6-d76c-4f78-b102-76e65173f712" + }, + "attachedElementGuid" : { + "value" : "6c97a491-53ed-4340-8205-a93bcff3c16a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -6, + "y" : 3, + "z" : 1305 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "534af4d6-d76c-4f78-b102-76e65173f712" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "534af4d6-d76c-4f78-b102-76e65173f712" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "534af4d6-d76c-4f78-b102-76e65173f712" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode30", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3cb193d0-2187-4875-b511-17033be135e0" + }, + "attachedElementGuid" : { + "value" : "6c97a491-53ed-4340-8205-a93bcff3c16a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 1350 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3cb193d0-2187-4875-b511-17033be135e0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3cb193d0-2187-4875-b511-17033be135e0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3cb193d0-2187-4875-b511-17033be135e0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode31", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d89d5f63-54a3-46b9-916a-f84cf2fe413a" + }, + "attachedElementGuid" : { + "value" : "6c97a491-53ed-4340-8205-a93bcff3c16a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 4, + "y" : 0, + "z" : 1395 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d89d5f63-54a3-46b9-916a-f84cf2fe413a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d89d5f63-54a3-46b9-916a-f84cf2fe413a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d89d5f63-54a3-46b9-916a-f84cf2fe413a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode32", + "tags" : [ + + ], + "elementGuid" : { + "value" : "67f0ba43-b440-4e3d-9de4-9068c39edc28" + }, + "attachedElementGuid" : { + "value" : "6c97a491-53ed-4340-8205-a93bcff3c16a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 1440 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "67f0ba43-b440-4e3d-9de4-9068c39edc28" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "67f0ba43-b440-4e3d-9de4-9068c39edc28" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "67f0ba43-b440-4e3d-9de4-9068c39edc28" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "T2", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7cf3bc51-20d9-47db-8411-68daa4610c45" + }, + "attachedElementGuid" : { + "value" : "dfa2bcac-e1f2-44fd-a810-1a0190238d80" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7cf3bc51-20d9-47db-8411-68daa4610c45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7cf3bc51-20d9-47db-8411-68daa4610c45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 1, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "7cf3bc51-20d9-47db-8411-68daa4610c45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 46.35, + "trackEndTime" : 78.03, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "7cf3bc51-20d9-47db-8411-68daa4610c45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4a6dfef1-0fce-49fc-a248-b0e723417f3c" + }, + "attachedElementGuid" : { + "value" : "7cf3bc51-20d9-47db-8411-68daa4610c45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4a6dfef1-0fce-49fc-a248-b0e723417f3c" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : false, + "time" : 47.85 + },{ + "value" : false, + "time" : 79.53 + } + ] + }, + "enableProcessTime" : 0, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + { + "startValue" : 79.53, + "endValue" : 5, + "startTime" : 47.85, + "endTime" : 5, + "animationCurveType" : 0 + } + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a13e213c-a0c5-4c56-8e08-29e99139c7a8" + }, + "attachedElementGuid" : { + "value" : "4a6dfef1-0fce-49fc-a248-b0e723417f3c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a13e213c-a0c5-4c56-8e08-29e99139c7a8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a13e213c-a0c5-4c56-8e08-29e99139c7a8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0.5, + "g" : 0.8, + "b" : 1, + "a" : 0.5 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "a13e213c-a0c5-4c56-8e08-29e99139c7a8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode0", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2a9436b9-e87b-4403-ba10-e5f74ab28991" + }, + "attachedElementGuid" : { + "value" : "7cf3bc51-20d9-47db-8411-68daa4610c45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 1.5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2a9436b9-e87b-4403-ba10-e5f74ab28991" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2a9436b9-e87b-4403-ba10-e5f74ab28991" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "2a9436b9-e87b-4403-ba10-e5f74ab28991" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode1", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1dc322dc-85bd-4ca9-b3cb-a6b2333fb580" + }, + "attachedElementGuid" : { + "value" : "7cf3bc51-20d9-47db-8411-68daa4610c45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 6, + "y" : 0, + "z" : 45 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "1dc322dc-85bd-4ca9-b3cb-a6b2333fb580" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1dc322dc-85bd-4ca9-b3cb-a6b2333fb580" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "1dc322dc-85bd-4ca9-b3cb-a6b2333fb580" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode2", + "tags" : [ + + ], + "elementGuid" : { + "value" : "18157e69-ef33-4664-b87c-674598b2689a" + }, + "attachedElementGuid" : { + "value" : "7cf3bc51-20d9-47db-8411-68daa4610c45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 90 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "18157e69-ef33-4664-b87c-674598b2689a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "18157e69-ef33-4664-b87c-674598b2689a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "18157e69-ef33-4664-b87c-674598b2689a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode3", + "tags" : [ + + ], + "elementGuid" : { + "value" : "305d96f8-2a75-4a6f-a3c8-1e3a883333e7" + }, + "attachedElementGuid" : { + "value" : "7cf3bc51-20d9-47db-8411-68daa4610c45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -6, + "y" : 0, + "z" : 135 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "305d96f8-2a75-4a6f-a3c8-1e3a883333e7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "305d96f8-2a75-4a6f-a3c8-1e3a883333e7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "305d96f8-2a75-4a6f-a3c8-1e3a883333e7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode4", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ef6e0acb-0bfe-4975-b945-a6fc31c49df7" + }, + "attachedElementGuid" : { + "value" : "7cf3bc51-20d9-47db-8411-68daa4610c45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 180 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ef6e0acb-0bfe-4975-b945-a6fc31c49df7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ef6e0acb-0bfe-4975-b945-a6fc31c49df7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ef6e0acb-0bfe-4975-b945-a6fc31c49df7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode5", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e5c3b075-ad7e-47d7-8167-3274782c2481" + }, + "attachedElementGuid" : { + "value" : "7cf3bc51-20d9-47db-8411-68daa4610c45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 6, + "y" : 0, + "z" : 225 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e5c3b075-ad7e-47d7-8167-3274782c2481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e5c3b075-ad7e-47d7-8167-3274782c2481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e5c3b075-ad7e-47d7-8167-3274782c2481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode6", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a439d898-3ce2-429d-9e0a-5e94a51fd30f" + }, + "attachedElementGuid" : { + "value" : "7cf3bc51-20d9-47db-8411-68daa4610c45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 270 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a439d898-3ce2-429d-9e0a-5e94a51fd30f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a439d898-3ce2-429d-9e0a-5e94a51fd30f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a439d898-3ce2-429d-9e0a-5e94a51fd30f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode7", + "tags" : [ + + ], + "elementGuid" : { + "value" : "190f7320-71f8-4b15-8b6e-8b16f4fb120a" + }, + "attachedElementGuid" : { + "value" : "7cf3bc51-20d9-47db-8411-68daa4610c45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -6, + "y" : 0, + "z" : 315 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "190f7320-71f8-4b15-8b6e-8b16f4fb120a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "190f7320-71f8-4b15-8b6e-8b16f4fb120a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "190f7320-71f8-4b15-8b6e-8b16f4fb120a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode8", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fdaa2388-bc86-4282-8eb6-003e05ec07fd" + }, + "attachedElementGuid" : { + "value" : "7cf3bc51-20d9-47db-8411-68daa4610c45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 360 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "fdaa2388-bc86-4282-8eb6-003e05ec07fd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fdaa2388-bc86-4282-8eb6-003e05ec07fd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "fdaa2388-bc86-4282-8eb6-003e05ec07fd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode9", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8be50625-b794-4e52-b4ca-289c42f5ccb9" + }, + "attachedElementGuid" : { + "value" : "7cf3bc51-20d9-47db-8411-68daa4610c45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 6, + "y" : 0, + "z" : 405 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8be50625-b794-4e52-b4ca-289c42f5ccb9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8be50625-b794-4e52-b4ca-289c42f5ccb9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8be50625-b794-4e52-b4ca-289c42f5ccb9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode10", + "tags" : [ + + ], + "elementGuid" : { + "value" : "14efee0c-398c-4d73-a2e7-1c0b21e9d8a3" + }, + "attachedElementGuid" : { + "value" : "7cf3bc51-20d9-47db-8411-68daa4610c45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 450 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "14efee0c-398c-4d73-a2e7-1c0b21e9d8a3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "14efee0c-398c-4d73-a2e7-1c0b21e9d8a3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "14efee0c-398c-4d73-a2e7-1c0b21e9d8a3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode11", + "tags" : [ + + ], + "elementGuid" : { + "value" : "79863868-24ab-4c58-af7d-6cec38eeae7d" + }, + "attachedElementGuid" : { + "value" : "7cf3bc51-20d9-47db-8411-68daa4610c45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -6, + "y" : 0, + "z" : 495 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "79863868-24ab-4c58-af7d-6cec38eeae7d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "79863868-24ab-4c58-af7d-6cec38eeae7d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "79863868-24ab-4c58-af7d-6cec38eeae7d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode12", + "tags" : [ + + ], + "elementGuid" : { + "value" : "dcbacba3-ec6e-4342-9715-0db3b24224bf" + }, + "attachedElementGuid" : { + "value" : "7cf3bc51-20d9-47db-8411-68daa4610c45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 540 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "dcbacba3-ec6e-4342-9715-0db3b24224bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "dcbacba3-ec6e-4342-9715-0db3b24224bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "dcbacba3-ec6e-4342-9715-0db3b24224bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode13", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c88c8a63-e14d-4b7d-aa1e-3407e00fad20" + }, + "attachedElementGuid" : { + "value" : "7cf3bc51-20d9-47db-8411-68daa4610c45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 6, + "y" : 0, + "z" : 585 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c88c8a63-e14d-4b7d-aa1e-3407e00fad20" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c88c8a63-e14d-4b7d-aa1e-3407e00fad20" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c88c8a63-e14d-4b7d-aa1e-3407e00fad20" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode14", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3001f499-7adb-4a1f-a294-06f21a656c84" + }, + "attachedElementGuid" : { + "value" : "7cf3bc51-20d9-47db-8411-68daa4610c45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 630 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3001f499-7adb-4a1f-a294-06f21a656c84" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3001f499-7adb-4a1f-a294-06f21a656c84" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3001f499-7adb-4a1f-a294-06f21a656c84" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode15", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9f5c822b-b63c-4d90-a438-92bae565631e" + }, + "attachedElementGuid" : { + "value" : "7cf3bc51-20d9-47db-8411-68daa4610c45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -6, + "y" : 0, + "z" : 675 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9f5c822b-b63c-4d90-a438-92bae565631e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9f5c822b-b63c-4d90-a438-92bae565631e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "9f5c822b-b63c-4d90-a438-92bae565631e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode16", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f0bdfa19-d3c9-4d68-a8f7-5f8e4a654b3a" + }, + "attachedElementGuid" : { + "value" : "7cf3bc51-20d9-47db-8411-68daa4610c45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2.4, + "y" : 0, + "z" : 720 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f0bdfa19-d3c9-4d68-a8f7-5f8e4a654b3a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f0bdfa19-d3c9-4d68-a8f7-5f8e4a654b3a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f0bdfa19-d3c9-4d68-a8f7-5f8e4a654b3a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode17", + "tags" : [ + + ], + "elementGuid" : { + "value" : "dba23da8-345c-460f-8883-ea21c2316598" + }, + "attachedElementGuid" : { + "value" : "7cf3bc51-20d9-47db-8411-68daa4610c45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -4, + "y" : 0, + "z" : 765 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "dba23da8-345c-460f-8883-ea21c2316598" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "dba23da8-345c-460f-8883-ea21c2316598" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "dba23da8-345c-460f-8883-ea21c2316598" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode18", + "tags" : [ + + ], + "elementGuid" : { + "value" : "847311df-2a48-426e-a62c-54e78b152885" + }, + "attachedElementGuid" : { + "value" : "7cf3bc51-20d9-47db-8411-68daa4610c45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 810 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "847311df-2a48-426e-a62c-54e78b152885" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "847311df-2a48-426e-a62c-54e78b152885" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "847311df-2a48-426e-a62c-54e78b152885" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode19", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4d7a098c-14a2-4abe-91bb-bd91be452698" + }, + "attachedElementGuid" : { + "value" : "7cf3bc51-20d9-47db-8411-68daa4610c45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 6, + "y" : 3, + "z" : 855 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4d7a098c-14a2-4abe-91bb-bd91be452698" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4d7a098c-14a2-4abe-91bb-bd91be452698" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4d7a098c-14a2-4abe-91bb-bd91be452698" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode20", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7248fb74-add9-4938-aa3b-f4b928a6571f" + }, + "attachedElementGuid" : { + "value" : "7cf3bc51-20d9-47db-8411-68daa4610c45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 900 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7248fb74-add9-4938-aa3b-f4b928a6571f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7248fb74-add9-4938-aa3b-f4b928a6571f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "7248fb74-add9-4938-aa3b-f4b928a6571f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode21", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f9ed3961-f955-4348-a34b-2271065a4f73" + }, + "attachedElementGuid" : { + "value" : "7cf3bc51-20d9-47db-8411-68daa4610c45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -4, + "y" : 0, + "z" : 945 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f9ed3961-f955-4348-a34b-2271065a4f73" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f9ed3961-f955-4348-a34b-2271065a4f73" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f9ed3961-f955-4348-a34b-2271065a4f73" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode22", + "tags" : [ + + ], + "elementGuid" : { + "value" : "be5c6ecf-6a4a-4b32-8aec-c13c3a28e9ef" + }, + "attachedElementGuid" : { + "value" : "7cf3bc51-20d9-47db-8411-68daa4610c45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 990 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "be5c6ecf-6a4a-4b32-8aec-c13c3a28e9ef" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "be5c6ecf-6a4a-4b32-8aec-c13c3a28e9ef" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "be5c6ecf-6a4a-4b32-8aec-c13c3a28e9ef" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode23", + "tags" : [ + + ], + "elementGuid" : { + "value" : "77d1e0ca-0bd6-459f-9165-c27160f6d141" + }, + "attachedElementGuid" : { + "value" : "7cf3bc51-20d9-47db-8411-68daa4610c45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 6, + "y" : 3, + "z" : 1035 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "77d1e0ca-0bd6-459f-9165-c27160f6d141" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "77d1e0ca-0bd6-459f-9165-c27160f6d141" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "77d1e0ca-0bd6-459f-9165-c27160f6d141" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode24", + "tags" : [ + + ], + "elementGuid" : { + "value" : "98c35135-49fa-487b-b9d7-50d35899a349" + }, + "attachedElementGuid" : { + "value" : "7cf3bc51-20d9-47db-8411-68daa4610c45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 1080 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "98c35135-49fa-487b-b9d7-50d35899a349" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "98c35135-49fa-487b-b9d7-50d35899a349" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "98c35135-49fa-487b-b9d7-50d35899a349" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode25", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1cf0deb3-4c13-41ec-b54b-bb12558ef434" + }, + "attachedElementGuid" : { + "value" : "7cf3bc51-20d9-47db-8411-68daa4610c45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -4, + "y" : 0, + "z" : 1125 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "1cf0deb3-4c13-41ec-b54b-bb12558ef434" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1cf0deb3-4c13-41ec-b54b-bb12558ef434" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "1cf0deb3-4c13-41ec-b54b-bb12558ef434" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode26", + "tags" : [ + + ], + "elementGuid" : { + "value" : "97d60d03-db5c-4c13-843a-f6dd717abc62" + }, + "attachedElementGuid" : { + "value" : "7cf3bc51-20d9-47db-8411-68daa4610c45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 1170 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "97d60d03-db5c-4c13-843a-f6dd717abc62" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "97d60d03-db5c-4c13-843a-f6dd717abc62" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "97d60d03-db5c-4c13-843a-f6dd717abc62" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode27", + "tags" : [ + + ], + "elementGuid" : { + "value" : "288585bf-1641-47bd-a9d9-d9269e1f9e0d" + }, + "attachedElementGuid" : { + "value" : "7cf3bc51-20d9-47db-8411-68daa4610c45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 6, + "y" : 3, + "z" : 1215 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "288585bf-1641-47bd-a9d9-d9269e1f9e0d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "288585bf-1641-47bd-a9d9-d9269e1f9e0d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "288585bf-1641-47bd-a9d9-d9269e1f9e0d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode28", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1ce733c8-ab62-45d0-83a4-dbbb80fdeee0" + }, + "attachedElementGuid" : { + "value" : "7cf3bc51-20d9-47db-8411-68daa4610c45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 1260 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "1ce733c8-ab62-45d0-83a4-dbbb80fdeee0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1ce733c8-ab62-45d0-83a4-dbbb80fdeee0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "1ce733c8-ab62-45d0-83a4-dbbb80fdeee0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode29", + "tags" : [ + + ], + "elementGuid" : { + "value" : "64357df2-bfc4-4a41-999d-ad72d9e63bf3" + }, + "attachedElementGuid" : { + "value" : "7cf3bc51-20d9-47db-8411-68daa4610c45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -4, + "y" : 0, + "z" : 1305 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "64357df2-bfc4-4a41-999d-ad72d9e63bf3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "64357df2-bfc4-4a41-999d-ad72d9e63bf3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "64357df2-bfc4-4a41-999d-ad72d9e63bf3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode30", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e9465b98-ab72-480e-a7af-125868fb726d" + }, + "attachedElementGuid" : { + "value" : "7cf3bc51-20d9-47db-8411-68daa4610c45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 1350 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e9465b98-ab72-480e-a7af-125868fb726d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e9465b98-ab72-480e-a7af-125868fb726d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e9465b98-ab72-480e-a7af-125868fb726d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode31", + "tags" : [ + + ], + "elementGuid" : { + "value" : "43cc24bf-8d8d-48ab-bb5a-cec17304b204" + }, + "attachedElementGuid" : { + "value" : "7cf3bc51-20d9-47db-8411-68daa4610c45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 6, + "y" : 3, + "z" : 1395 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "43cc24bf-8d8d-48ab-bb5a-cec17304b204" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "43cc24bf-8d8d-48ab-bb5a-cec17304b204" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "43cc24bf-8d8d-48ab-bb5a-cec17304b204" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode32", + "tags" : [ + + ], + "elementGuid" : { + "value" : "472a6823-d322-4e44-bc9c-37f820ef6e6a" + }, + "attachedElementGuid" : { + "value" : "7cf3bc51-20d9-47db-8411-68daa4610c45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 1440 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "472a6823-d322-4e44-bc9c-37f820ef6e6a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "472a6823-d322-4e44-bc9c-37f820ef6e6a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "472a6823-d322-4e44-bc9c-37f820ef6e6a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "T1-2", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e77bbc70-fcdd-4212-9415-f60b37ee8281" + }, + "attachedElementGuid" : { + "value" : "faf1d98e-f3af-422f-a6bb-ecd6a8b7dfe7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e77bbc70-fcdd-4212-9415-f60b37ee8281" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e77bbc70-fcdd-4212-9415-f60b37ee8281" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 1, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "e77bbc70-fcdd-4212-9415-f60b37ee8281" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 47.85, + "trackEndTime" : 63.69, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "e77bbc70-fcdd-4212-9415-f60b37ee8281" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5914c5a5-e131-4d1a-ab6a-99b7250935a9" + }, + "attachedElementGuid" : { + "value" : "e77bbc70-fcdd-4212-9415-f60b37ee8281" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5914c5a5-e131-4d1a-ab6a-99b7250935a9" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 47.85 + },{ + "value" : false, + "time" : 63.69 + } + ] + }, + "enableProcessTime" : 0, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + { + "startValue" : 79.53, + "endValue" : 5, + "startTime" : 47.85, + "endTime" : 5, + "animationCurveType" : 0 + } + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a01af41b-3cf8-4a43-9ee3-a4ef9293cec5" + }, + "attachedElementGuid" : { + "value" : "5914c5a5-e131-4d1a-ab6a-99b7250935a9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a01af41b-3cf8-4a43-9ee3-a4ef9293cec5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a01af41b-3cf8-4a43-9ee3-a4ef9293cec5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0.3965093, + "g" : 0.497728825, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "a01af41b-3cf8-4a43-9ee3-a4ef9293cec5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode0", + "tags" : [ + + ], + "elementGuid" : { + "value" : "dbcf9e9f-66d9-45ff-a035-b407dabbb344" + }, + "attachedElementGuid" : { + "value" : "e77bbc70-fcdd-4212-9415-f60b37ee8281" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -1.5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "dbcf9e9f-66d9-45ff-a035-b407dabbb344" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "dbcf9e9f-66d9-45ff-a035-b407dabbb344" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "dbcf9e9f-66d9-45ff-a035-b407dabbb344" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode1", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ade2586f-8b1a-4b09-94ee-31b3a89492f9" + }, + "attachedElementGuid" : { + "value" : "e77bbc70-fcdd-4212-9415-f60b37ee8281" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -4, + "y" : 0, + "z" : 45 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ade2586f-8b1a-4b09-94ee-31b3a89492f9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ade2586f-8b1a-4b09-94ee-31b3a89492f9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ade2586f-8b1a-4b09-94ee-31b3a89492f9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode2", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d8782744-69e8-4bc4-a047-d0337ca8f653" + }, + "attachedElementGuid" : { + "value" : "e77bbc70-fcdd-4212-9415-f60b37ee8281" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2, + "y" : 0, + "z" : 90 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d8782744-69e8-4bc4-a047-d0337ca8f653" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d8782744-69e8-4bc4-a047-d0337ca8f653" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d8782744-69e8-4bc4-a047-d0337ca8f653" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode3", + "tags" : [ + + ], + "elementGuid" : { + "value" : "499ffcbe-4f77-4dbd-bc71-6f285c583cd6" + }, + "attachedElementGuid" : { + "value" : "e77bbc70-fcdd-4212-9415-f60b37ee8281" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 7, + "y" : 0, + "z" : 135 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "499ffcbe-4f77-4dbd-bc71-6f285c583cd6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "499ffcbe-4f77-4dbd-bc71-6f285c583cd6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "499ffcbe-4f77-4dbd-bc71-6f285c583cd6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode4", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a2934e15-ec26-473c-9a34-767a97cfaaf6" + }, + "attachedElementGuid" : { + "value" : "e77bbc70-fcdd-4212-9415-f60b37ee8281" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2, + "y" : 0, + "z" : 180 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a2934e15-ec26-473c-9a34-767a97cfaaf6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a2934e15-ec26-473c-9a34-767a97cfaaf6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a2934e15-ec26-473c-9a34-767a97cfaaf6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode5", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bbf0cb0c-9471-4059-95e5-f8ec0294c459" + }, + "attachedElementGuid" : { + "value" : "e77bbc70-fcdd-4212-9415-f60b37ee8281" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -4, + "y" : 0, + "z" : 225 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "bbf0cb0c-9471-4059-95e5-f8ec0294c459" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bbf0cb0c-9471-4059-95e5-f8ec0294c459" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "bbf0cb0c-9471-4059-95e5-f8ec0294c459" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode6", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1612b0bb-ad52-45fd-8f9e-b3ec9a98e4c6" + }, + "attachedElementGuid" : { + "value" : "e77bbc70-fcdd-4212-9415-f60b37ee8281" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2, + "y" : 0, + "z" : 270 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "1612b0bb-ad52-45fd-8f9e-b3ec9a98e4c6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1612b0bb-ad52-45fd-8f9e-b3ec9a98e4c6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "1612b0bb-ad52-45fd-8f9e-b3ec9a98e4c6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode7", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bf8619f1-58cf-43a0-a0fe-1ce7ae65ed72" + }, + "attachedElementGuid" : { + "value" : "e77bbc70-fcdd-4212-9415-f60b37ee8281" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 8, + "y" : 0, + "z" : 315 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "bf8619f1-58cf-43a0-a0fe-1ce7ae65ed72" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bf8619f1-58cf-43a0-a0fe-1ce7ae65ed72" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "bf8619f1-58cf-43a0-a0fe-1ce7ae65ed72" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode8", + "tags" : [ + + ], + "elementGuid" : { + "value" : "de5b6cdb-263e-4586-96fb-09b78d918345" + }, + "attachedElementGuid" : { + "value" : "e77bbc70-fcdd-4212-9415-f60b37ee8281" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2, + "y" : 0, + "z" : 360 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "de5b6cdb-263e-4586-96fb-09b78d918345" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "de5b6cdb-263e-4586-96fb-09b78d918345" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "de5b6cdb-263e-4586-96fb-09b78d918345" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode9", + "tags" : [ + + ], + "elementGuid" : { + "value" : "98bc78c8-d7cf-4361-963c-515969e6ecd5" + }, + "attachedElementGuid" : { + "value" : "e77bbc70-fcdd-4212-9415-f60b37ee8281" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -4, + "y" : 0, + "z" : 405 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "98bc78c8-d7cf-4361-963c-515969e6ecd5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "98bc78c8-d7cf-4361-963c-515969e6ecd5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "98bc78c8-d7cf-4361-963c-515969e6ecd5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode10", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b6830337-6ada-43db-8b75-a08e87664815" + }, + "attachedElementGuid" : { + "value" : "e77bbc70-fcdd-4212-9415-f60b37ee8281" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2, + "y" : 0, + "z" : 450 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b6830337-6ada-43db-8b75-a08e87664815" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b6830337-6ada-43db-8b75-a08e87664815" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b6830337-6ada-43db-8b75-a08e87664815" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode11", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c1eacaff-321f-4f53-8948-85500f28a2ff" + }, + "attachedElementGuid" : { + "value" : "e77bbc70-fcdd-4212-9415-f60b37ee8281" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 8, + "y" : 0, + "z" : 495 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c1eacaff-321f-4f53-8948-85500f28a2ff" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c1eacaff-321f-4f53-8948-85500f28a2ff" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c1eacaff-321f-4f53-8948-85500f28a2ff" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode12", + "tags" : [ + + ], + "elementGuid" : { + "value" : "98bece40-d12c-4e6e-b4f3-2aaa6cea0950" + }, + "attachedElementGuid" : { + "value" : "e77bbc70-fcdd-4212-9415-f60b37ee8281" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2, + "y" : 0, + "z" : 540 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "98bece40-d12c-4e6e-b4f3-2aaa6cea0950" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "98bece40-d12c-4e6e-b4f3-2aaa6cea0950" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "98bece40-d12c-4e6e-b4f3-2aaa6cea0950" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode13", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4052c1b4-1a53-4977-9a5b-4346633dc1b1" + }, + "attachedElementGuid" : { + "value" : "e77bbc70-fcdd-4212-9415-f60b37ee8281" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -4, + "y" : 0, + "z" : 585 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4052c1b4-1a53-4977-9a5b-4346633dc1b1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4052c1b4-1a53-4977-9a5b-4346633dc1b1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4052c1b4-1a53-4977-9a5b-4346633dc1b1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode14", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2939bd0d-2d78-4a52-9409-215cadef0a94" + }, + "attachedElementGuid" : { + "value" : "e77bbc70-fcdd-4212-9415-f60b37ee8281" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2, + "y" : 0, + "z" : 630 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2939bd0d-2d78-4a52-9409-215cadef0a94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2939bd0d-2d78-4a52-9409-215cadef0a94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "2939bd0d-2d78-4a52-9409-215cadef0a94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode15", + "tags" : [ + + ], + "elementGuid" : { + "value" : "24e8d5a5-57f1-4d2f-84c5-97184f92e0a2" + }, + "attachedElementGuid" : { + "value" : "e77bbc70-fcdd-4212-9415-f60b37ee8281" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 8, + "y" : 0, + "z" : 675 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "24e8d5a5-57f1-4d2f-84c5-97184f92e0a2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "24e8d5a5-57f1-4d2f-84c5-97184f92e0a2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "24e8d5a5-57f1-4d2f-84c5-97184f92e0a2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode16", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1c7364e6-76fb-472a-aceb-e84d15d70c60" + }, + "attachedElementGuid" : { + "value" : "e77bbc70-fcdd-4212-9415-f60b37ee8281" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2, + "y" : 0, + "z" : 720 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "1c7364e6-76fb-472a-aceb-e84d15d70c60" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1c7364e6-76fb-472a-aceb-e84d15d70c60" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "1c7364e6-76fb-472a-aceb-e84d15d70c60" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "T2-2", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + }, + "attachedElementGuid" : { + "value" : "faf1d98e-f3af-422f-a6bb-ecd6a8b7dfe7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 1, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 47.85, + "trackEndTime" : 79.53, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1efc686c-b045-4df7-9edd-7669f267599d" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1efc686c-b045-4df7-9edd-7669f267599d" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 47.85 + },{ + "value" : false, + "time" : 79.53 + } + ] + }, + "enableProcessTime" : 0, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + { + "startValue" : 79.53, + "endValue" : 5, + "startTime" : 47.85, + "endTime" : 5, + "animationCurveType" : 0 + } + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7e28586d-dad0-493b-a637-c4b6dd32223d" + }, + "attachedElementGuid" : { + "value" : "1efc686c-b045-4df7-9edd-7669f267599d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7e28586d-dad0-493b-a637-c4b6dd32223d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7e28586d-dad0-493b-a637-c4b6dd32223d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0.3965093, + "g" : 0.497728825, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "7e28586d-dad0-493b-a637-c4b6dd32223d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode0", + "tags" : [ + + ], + "elementGuid" : { + "value" : "405aa811-4427-4b86-83aa-87ab1e3d360e" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 1.5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "405aa811-4427-4b86-83aa-87ab1e3d360e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "405aa811-4427-4b86-83aa-87ab1e3d360e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "405aa811-4427-4b86-83aa-87ab1e3d360e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode1", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f9a5a580-3d6c-458b-89d9-8de5233c98c5" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 4, + "y" : 0, + "z" : 45 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f9a5a580-3d6c-458b-89d9-8de5233c98c5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f9a5a580-3d6c-458b-89d9-8de5233c98c5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f9a5a580-3d6c-458b-89d9-8de5233c98c5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode2", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ed442256-1996-4859-aac0-a5f5470da836" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -2, + "y" : 0, + "z" : 90 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ed442256-1996-4859-aac0-a5f5470da836" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ed442256-1996-4859-aac0-a5f5470da836" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ed442256-1996-4859-aac0-a5f5470da836" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode3", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fc7ff9dd-702a-4814-ab7e-56693fcdd159" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -8, + "y" : 0, + "z" : 135 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "fc7ff9dd-702a-4814-ab7e-56693fcdd159" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fc7ff9dd-702a-4814-ab7e-56693fcdd159" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "fc7ff9dd-702a-4814-ab7e-56693fcdd159" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode4", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d02917bb-928a-47ce-bb82-006aa04c50e0" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -2, + "y" : 0, + "z" : 180 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d02917bb-928a-47ce-bb82-006aa04c50e0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d02917bb-928a-47ce-bb82-006aa04c50e0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d02917bb-928a-47ce-bb82-006aa04c50e0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode5", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3206268e-9d33-4b0f-bc60-01b103c78687" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 4, + "y" : 0, + "z" : 225 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3206268e-9d33-4b0f-bc60-01b103c78687" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3206268e-9d33-4b0f-bc60-01b103c78687" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3206268e-9d33-4b0f-bc60-01b103c78687" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode6", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9cee789c-3f18-4884-8c5f-e3826874f64f" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -2, + "y" : 0, + "z" : 270 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9cee789c-3f18-4884-8c5f-e3826874f64f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9cee789c-3f18-4884-8c5f-e3826874f64f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "9cee789c-3f18-4884-8c5f-e3826874f64f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode7", + "tags" : [ + + ], + "elementGuid" : { + "value" : "06fa9e04-17ca-4f0e-bf25-0ce2e32c73da" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -8, + "y" : 0, + "z" : 315 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "06fa9e04-17ca-4f0e-bf25-0ce2e32c73da" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "06fa9e04-17ca-4f0e-bf25-0ce2e32c73da" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "06fa9e04-17ca-4f0e-bf25-0ce2e32c73da" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode8", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9c34d01e-968d-4bdc-8905-861a2bf2e307" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -2, + "y" : 0, + "z" : 360 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9c34d01e-968d-4bdc-8905-861a2bf2e307" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9c34d01e-968d-4bdc-8905-861a2bf2e307" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "9c34d01e-968d-4bdc-8905-861a2bf2e307" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode9", + "tags" : [ + + ], + "elementGuid" : { + "value" : "24a95351-79c6-4b05-a244-869a38613090" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 4, + "y" : 0, + "z" : 405 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "24a95351-79c6-4b05-a244-869a38613090" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "24a95351-79c6-4b05-a244-869a38613090" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "24a95351-79c6-4b05-a244-869a38613090" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode10", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bfb5b010-1192-4974-bc50-71fb52f02e77" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -2, + "y" : 0, + "z" : 450 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "bfb5b010-1192-4974-bc50-71fb52f02e77" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bfb5b010-1192-4974-bc50-71fb52f02e77" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "bfb5b010-1192-4974-bc50-71fb52f02e77" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode11", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0f86757c-78a8-47bc-8a9f-cbb974cf6c34" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -8, + "y" : 0, + "z" : 495 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0f86757c-78a8-47bc-8a9f-cbb974cf6c34" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0f86757c-78a8-47bc-8a9f-cbb974cf6c34" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0f86757c-78a8-47bc-8a9f-cbb974cf6c34" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode12", + "tags" : [ + + ], + "elementGuid" : { + "value" : "042ebd28-1d79-4e38-a583-7d6d1801c63a" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -2, + "y" : 0, + "z" : 540 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "042ebd28-1d79-4e38-a583-7d6d1801c63a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "042ebd28-1d79-4e38-a583-7d6d1801c63a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "042ebd28-1d79-4e38-a583-7d6d1801c63a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode13", + "tags" : [ + + ], + "elementGuid" : { + "value" : "01776a55-b261-4a66-8641-c284ffa34873" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 4, + "y" : 0, + "z" : 585 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "01776a55-b261-4a66-8641-c284ffa34873" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "01776a55-b261-4a66-8641-c284ffa34873" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "01776a55-b261-4a66-8641-c284ffa34873" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode14", + "tags" : [ + + ], + "elementGuid" : { + "value" : "52793b1b-0344-4e59-806e-cae7cfb202d8" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -2, + "y" : 0, + "z" : 630 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "52793b1b-0344-4e59-806e-cae7cfb202d8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "52793b1b-0344-4e59-806e-cae7cfb202d8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "52793b1b-0344-4e59-806e-cae7cfb202d8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode15", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b874313b-919c-49b5-a198-2d198f4d837b" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -8, + "y" : 0, + "z" : 675 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b874313b-919c-49b5-a198-2d198f4d837b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b874313b-919c-49b5-a198-2d198f4d837b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b874313b-919c-49b5-a198-2d198f4d837b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode16", + "tags" : [ + + ], + "elementGuid" : { + "value" : "adb96fdd-0d76-44e0-9bf3-f90e972d431c" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2, + "y" : 0, + "z" : 720 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "adb96fdd-0d76-44e0-9bf3-f90e972d431c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "adb96fdd-0d76-44e0-9bf3-f90e972d431c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "adb96fdd-0d76-44e0-9bf3-f90e972d431c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode17", + "tags" : [ + + ], + "elementGuid" : { + "value" : "55daf6a3-10da-465d-b6d3-4e1ee836ff46" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 765 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "55daf6a3-10da-465d-b6d3-4e1ee836ff46" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "55daf6a3-10da-465d-b6d3-4e1ee836ff46" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "55daf6a3-10da-465d-b6d3-4e1ee836ff46" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode18", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d1c81122-b363-4e59-a5a0-05b441581d91" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 810 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d1c81122-b363-4e59-a5a0-05b441581d91" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d1c81122-b363-4e59-a5a0-05b441581d91" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d1c81122-b363-4e59-a5a0-05b441581d91" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode19", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8a25a960-3a52-484b-95c6-6cd3f169493f" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 855 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8a25a960-3a52-484b-95c6-6cd3f169493f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8a25a960-3a52-484b-95c6-6cd3f169493f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8a25a960-3a52-484b-95c6-6cd3f169493f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode20", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0ebc7f6d-a64b-443b-8bd6-113c15d6be7f" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 900 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0ebc7f6d-a64b-443b-8bd6-113c15d6be7f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0ebc7f6d-a64b-443b-8bd6-113c15d6be7f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0ebc7f6d-a64b-443b-8bd6-113c15d6be7f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode21", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9a371e9c-798d-40bd-8f5c-db4e005f539b" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 945 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9a371e9c-798d-40bd-8f5c-db4e005f539b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9a371e9c-798d-40bd-8f5c-db4e005f539b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "9a371e9c-798d-40bd-8f5c-db4e005f539b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode22", + "tags" : [ + + ], + "elementGuid" : { + "value" : "55c40923-0f85-4d06-9824-74992b26edb9" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 990 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "55c40923-0f85-4d06-9824-74992b26edb9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "55c40923-0f85-4d06-9824-74992b26edb9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "55c40923-0f85-4d06-9824-74992b26edb9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode23", + "tags" : [ + + ], + "elementGuid" : { + "value" : "62f0ed58-9cb2-4c86-8853-e61e42719974" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 1035 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "62f0ed58-9cb2-4c86-8853-e61e42719974" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "62f0ed58-9cb2-4c86-8853-e61e42719974" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "62f0ed58-9cb2-4c86-8853-e61e42719974" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode24", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2aeff39a-d7ff-4e41-9607-77926da87fb9" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 1080 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2aeff39a-d7ff-4e41-9607-77926da87fb9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2aeff39a-d7ff-4e41-9607-77926da87fb9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "2aeff39a-d7ff-4e41-9607-77926da87fb9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode25", + "tags" : [ + + ], + "elementGuid" : { + "value" : "80c6915c-245b-4075-89b4-25f2ff73d29b" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 1125 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "80c6915c-245b-4075-89b4-25f2ff73d29b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "80c6915c-245b-4075-89b4-25f2ff73d29b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "80c6915c-245b-4075-89b4-25f2ff73d29b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode26", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8931b30d-add0-45ca-8e14-1707e55c1aa1" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 1170 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8931b30d-add0-45ca-8e14-1707e55c1aa1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8931b30d-add0-45ca-8e14-1707e55c1aa1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8931b30d-add0-45ca-8e14-1707e55c1aa1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode27", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4b5512a2-b605-49ac-ba8a-d9872fb5367d" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 1215 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4b5512a2-b605-49ac-ba8a-d9872fb5367d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4b5512a2-b605-49ac-ba8a-d9872fb5367d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4b5512a2-b605-49ac-ba8a-d9872fb5367d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode28", + "tags" : [ + + ], + "elementGuid" : { + "value" : "90180957-7130-4adb-ab0b-784a3acc3d94" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 1260 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "90180957-7130-4adb-ab0b-784a3acc3d94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "90180957-7130-4adb-ab0b-784a3acc3d94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "90180957-7130-4adb-ab0b-784a3acc3d94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode29", + "tags" : [ + + ], + "elementGuid" : { + "value" : "38fdcae9-2979-4e58-af54-c86eecafdd8a" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 1305 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "38fdcae9-2979-4e58-af54-c86eecafdd8a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "38fdcae9-2979-4e58-af54-c86eecafdd8a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "38fdcae9-2979-4e58-af54-c86eecafdd8a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode30", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a870dd8a-d822-46b1-851d-742b5eac6d77" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 1350 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a870dd8a-d822-46b1-851d-742b5eac6d77" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a870dd8a-d822-46b1-851d-742b5eac6d77" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a870dd8a-d822-46b1-851d-742b5eac6d77" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode31", + "tags" : [ + + ], + "elementGuid" : { + "value" : "49848e30-36b3-4d68-b98d-22ba03b26d74" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 1395 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "49848e30-36b3-4d68-b98d-22ba03b26d74" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "49848e30-36b3-4d68-b98d-22ba03b26d74" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "49848e30-36b3-4d68-b98d-22ba03b26d74" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode32", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fe02319e-4959-47e5-b3c8-8925a8b25045" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 1440 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "fe02319e-4959-47e5-b3c8-8925a8b25045" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fe02319e-4959-47e5-b3c8-8925a8b25045" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "fe02319e-4959-47e5-b3c8-8925a8b25045" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "T1-2", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d8aee5f8-5c81-435a-83cf-4efbff3d1423" + }, + "attachedElementGuid" : { + "value" : "dfa2bcac-e1f2-44fd-a810-1a0190238d80" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d8aee5f8-5c81-435a-83cf-4efbff3d1423" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d8aee5f8-5c81-435a-83cf-4efbff3d1423" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 1, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "d8aee5f8-5c81-435a-83cf-4efbff3d1423" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 46.35, + "trackEndTime" : 62.49, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "d8aee5f8-5c81-435a-83cf-4efbff3d1423" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1e0385f8-a0a1-4730-ae8f-6baefd9d17eb" + }, + "attachedElementGuid" : { + "value" : "d8aee5f8-5c81-435a-83cf-4efbff3d1423" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1e0385f8-a0a1-4730-ae8f-6baefd9d17eb" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : false, + "time" : 47.85 + },{ + "value" : false, + "time" : 63.69 + } + ] + }, + "enableProcessTime" : 0, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + { + "startValue" : 79.53, + "endValue" : 5, + "startTime" : 47.85, + "endTime" : 5, + "animationCurveType" : 0 + } + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b88e3b93-1046-4b66-ae1d-e2fd6646a793" + }, + "attachedElementGuid" : { + "value" : "1e0385f8-a0a1-4730-ae8f-6baefd9d17eb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b88e3b93-1046-4b66-ae1d-e2fd6646a793" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b88e3b93-1046-4b66-ae1d-e2fd6646a793" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0.5, + "g" : 0.8, + "b" : 1, + "a" : 0.5 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "b88e3b93-1046-4b66-ae1d-e2fd6646a793" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode0", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cafd0d6f-2f6e-4ca4-a84e-decc334c1a4f" + }, + "attachedElementGuid" : { + "value" : "d8aee5f8-5c81-435a-83cf-4efbff3d1423" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -1.5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "cafd0d6f-2f6e-4ca4-a84e-decc334c1a4f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "cafd0d6f-2f6e-4ca4-a84e-decc334c1a4f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "cafd0d6f-2f6e-4ca4-a84e-decc334c1a4f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode1", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e4dcb266-86b0-427e-b351-e656d1206c3e" + }, + "attachedElementGuid" : { + "value" : "d8aee5f8-5c81-435a-83cf-4efbff3d1423" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -4, + "y" : 0, + "z" : 45 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e4dcb266-86b0-427e-b351-e656d1206c3e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e4dcb266-86b0-427e-b351-e656d1206c3e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e4dcb266-86b0-427e-b351-e656d1206c3e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode2", + "tags" : [ + + ], + "elementGuid" : { + "value" : "154958c8-41fd-4b9a-8e58-b2f06eaf278a" + }, + "attachedElementGuid" : { + "value" : "d8aee5f8-5c81-435a-83cf-4efbff3d1423" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2, + "y" : 0, + "z" : 90 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "154958c8-41fd-4b9a-8e58-b2f06eaf278a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "154958c8-41fd-4b9a-8e58-b2f06eaf278a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "154958c8-41fd-4b9a-8e58-b2f06eaf278a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode3", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ab33c21d-9e09-47d2-a4ae-8901b928e21c" + }, + "attachedElementGuid" : { + "value" : "d8aee5f8-5c81-435a-83cf-4efbff3d1423" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 7, + "y" : 0, + "z" : 135 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ab33c21d-9e09-47d2-a4ae-8901b928e21c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ab33c21d-9e09-47d2-a4ae-8901b928e21c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ab33c21d-9e09-47d2-a4ae-8901b928e21c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode4", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f5728c6f-ad23-40cb-85ba-aadeaaec08fa" + }, + "attachedElementGuid" : { + "value" : "d8aee5f8-5c81-435a-83cf-4efbff3d1423" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2, + "y" : 0, + "z" : 180 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f5728c6f-ad23-40cb-85ba-aadeaaec08fa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f5728c6f-ad23-40cb-85ba-aadeaaec08fa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f5728c6f-ad23-40cb-85ba-aadeaaec08fa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode5", + "tags" : [ + + ], + "elementGuid" : { + "value" : "045c2860-f1b6-4d9e-949c-88779fc0e3b3" + }, + "attachedElementGuid" : { + "value" : "d8aee5f8-5c81-435a-83cf-4efbff3d1423" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -4, + "y" : 0, + "z" : 225 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "045c2860-f1b6-4d9e-949c-88779fc0e3b3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "045c2860-f1b6-4d9e-949c-88779fc0e3b3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "045c2860-f1b6-4d9e-949c-88779fc0e3b3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode6", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4d69aa88-a234-4321-9e87-3f44c2597686" + }, + "attachedElementGuid" : { + "value" : "d8aee5f8-5c81-435a-83cf-4efbff3d1423" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2, + "y" : 0, + "z" : 270 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4d69aa88-a234-4321-9e87-3f44c2597686" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4d69aa88-a234-4321-9e87-3f44c2597686" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4d69aa88-a234-4321-9e87-3f44c2597686" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode7", + "tags" : [ + + ], + "elementGuid" : { + "value" : "59524010-f7bd-46ff-99d2-dd4a453907e4" + }, + "attachedElementGuid" : { + "value" : "d8aee5f8-5c81-435a-83cf-4efbff3d1423" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 8, + "y" : 0, + "z" : 315 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "59524010-f7bd-46ff-99d2-dd4a453907e4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "59524010-f7bd-46ff-99d2-dd4a453907e4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "59524010-f7bd-46ff-99d2-dd4a453907e4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode8", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2e4391a0-1a29-4fa7-be3e-b1f39ed25e89" + }, + "attachedElementGuid" : { + "value" : "d8aee5f8-5c81-435a-83cf-4efbff3d1423" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2, + "y" : 0, + "z" : 360 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2e4391a0-1a29-4fa7-be3e-b1f39ed25e89" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2e4391a0-1a29-4fa7-be3e-b1f39ed25e89" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "2e4391a0-1a29-4fa7-be3e-b1f39ed25e89" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode9", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2d1d8307-a4d3-4932-81cc-ab952dee2f6c" + }, + "attachedElementGuid" : { + "value" : "d8aee5f8-5c81-435a-83cf-4efbff3d1423" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -4, + "y" : 0, + "z" : 405 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2d1d8307-a4d3-4932-81cc-ab952dee2f6c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2d1d8307-a4d3-4932-81cc-ab952dee2f6c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "2d1d8307-a4d3-4932-81cc-ab952dee2f6c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode10", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c0852528-c15f-4596-9dc5-2b50d4941a59" + }, + "attachedElementGuid" : { + "value" : "d8aee5f8-5c81-435a-83cf-4efbff3d1423" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2, + "y" : 0, + "z" : 450 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c0852528-c15f-4596-9dc5-2b50d4941a59" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c0852528-c15f-4596-9dc5-2b50d4941a59" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c0852528-c15f-4596-9dc5-2b50d4941a59" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode11", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c6e7aa48-0f80-45f3-a3a2-b576bf110ab2" + }, + "attachedElementGuid" : { + "value" : "d8aee5f8-5c81-435a-83cf-4efbff3d1423" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 8, + "y" : 0, + "z" : 495 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c6e7aa48-0f80-45f3-a3a2-b576bf110ab2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c6e7aa48-0f80-45f3-a3a2-b576bf110ab2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c6e7aa48-0f80-45f3-a3a2-b576bf110ab2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode12", + "tags" : [ + + ], + "elementGuid" : { + "value" : "55155df2-577e-4059-a515-5548cf2c6000" + }, + "attachedElementGuid" : { + "value" : "d8aee5f8-5c81-435a-83cf-4efbff3d1423" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2, + "y" : 0, + "z" : 540 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "55155df2-577e-4059-a515-5548cf2c6000" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "55155df2-577e-4059-a515-5548cf2c6000" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "55155df2-577e-4059-a515-5548cf2c6000" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode13", + "tags" : [ + + ], + "elementGuid" : { + "value" : "db25fb16-e77a-4a0c-bf42-d1ab34a43553" + }, + "attachedElementGuid" : { + "value" : "d8aee5f8-5c81-435a-83cf-4efbff3d1423" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -4, + "y" : 0, + "z" : 585 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "db25fb16-e77a-4a0c-bf42-d1ab34a43553" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "db25fb16-e77a-4a0c-bf42-d1ab34a43553" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "db25fb16-e77a-4a0c-bf42-d1ab34a43553" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode14", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c28a1723-ecb2-4446-8369-233a643348ed" + }, + "attachedElementGuid" : { + "value" : "d8aee5f8-5c81-435a-83cf-4efbff3d1423" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2, + "y" : 0, + "z" : 630 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c28a1723-ecb2-4446-8369-233a643348ed" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c28a1723-ecb2-4446-8369-233a643348ed" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c28a1723-ecb2-4446-8369-233a643348ed" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode15", + "tags" : [ + + ], + "elementGuid" : { + "value" : "271dbbab-9c7c-4b2f-a208-df947cf49c07" + }, + "attachedElementGuid" : { + "value" : "d8aee5f8-5c81-435a-83cf-4efbff3d1423" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 8, + "y" : 0, + "z" : 675 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "271dbbab-9c7c-4b2f-a208-df947cf49c07" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "271dbbab-9c7c-4b2f-a208-df947cf49c07" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "271dbbab-9c7c-4b2f-a208-df947cf49c07" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode16", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1bc508cf-0204-4565-a84c-530c7273e1da" + }, + "attachedElementGuid" : { + "value" : "d8aee5f8-5c81-435a-83cf-4efbff3d1423" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2, + "y" : 0, + "z" : 720 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "1bc508cf-0204-4565-a84c-530c7273e1da" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1bc508cf-0204-4565-a84c-530c7273e1da" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "1bc508cf-0204-4565-a84c-530c7273e1da" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "T2-2", + "tags" : [ + + ], + "elementGuid" : { + "value" : "84813320-a755-4b92-9db5-e07ca3cdf5bf" + }, + "attachedElementGuid" : { + "value" : "dfa2bcac-e1f2-44fd-a810-1a0190238d80" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "84813320-a755-4b92-9db5-e07ca3cdf5bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "84813320-a755-4b92-9db5-e07ca3cdf5bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 1, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "84813320-a755-4b92-9db5-e07ca3cdf5bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 46.35, + "trackEndTime" : 78.03, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "84813320-a755-4b92-9db5-e07ca3cdf5bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "969c3911-62a8-440c-a015-fe901971e11d" + }, + "attachedElementGuid" : { + "value" : "84813320-a755-4b92-9db5-e07ca3cdf5bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "969c3911-62a8-440c-a015-fe901971e11d" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : false, + "time" : 47.85 + },{ + "value" : false, + "time" : 79.53 + } + ] + }, + "enableProcessTime" : 0, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + { + "startValue" : 79.53, + "endValue" : 5, + "startTime" : 47.85, + "endTime" : 5, + "animationCurveType" : 0 + } + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e29595a5-e22a-4f29-b1ac-068e5170c1ea" + }, + "attachedElementGuid" : { + "value" : "969c3911-62a8-440c-a015-fe901971e11d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e29595a5-e22a-4f29-b1ac-068e5170c1ea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e29595a5-e22a-4f29-b1ac-068e5170c1ea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0.5, + "g" : 0.8, + "b" : 1, + "a" : 0.5 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "e29595a5-e22a-4f29-b1ac-068e5170c1ea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode0", + "tags" : [ + + ], + "elementGuid" : { + "value" : "18a1d3e4-136e-4665-848f-2565251c3264" + }, + "attachedElementGuid" : { + "value" : "84813320-a755-4b92-9db5-e07ca3cdf5bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 1.5, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "18a1d3e4-136e-4665-848f-2565251c3264" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "18a1d3e4-136e-4665-848f-2565251c3264" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "18a1d3e4-136e-4665-848f-2565251c3264" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode1", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fe9c515d-54fe-4f33-9535-3874c70e1c30" + }, + "attachedElementGuid" : { + "value" : "84813320-a755-4b92-9db5-e07ca3cdf5bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 4, + "y" : 0, + "z" : 45 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "fe9c515d-54fe-4f33-9535-3874c70e1c30" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fe9c515d-54fe-4f33-9535-3874c70e1c30" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "fe9c515d-54fe-4f33-9535-3874c70e1c30" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode2", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bec93fb4-d4ed-46a8-ba1f-6b4650e8a44a" + }, + "attachedElementGuid" : { + "value" : "84813320-a755-4b92-9db5-e07ca3cdf5bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -2, + "y" : 0, + "z" : 90 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "bec93fb4-d4ed-46a8-ba1f-6b4650e8a44a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bec93fb4-d4ed-46a8-ba1f-6b4650e8a44a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "bec93fb4-d4ed-46a8-ba1f-6b4650e8a44a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode3", + "tags" : [ + + ], + "elementGuid" : { + "value" : "33c421f5-bb1f-437e-b351-7fe0decab822" + }, + "attachedElementGuid" : { + "value" : "84813320-a755-4b92-9db5-e07ca3cdf5bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -8, + "y" : 0, + "z" : 135 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "33c421f5-bb1f-437e-b351-7fe0decab822" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "33c421f5-bb1f-437e-b351-7fe0decab822" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "33c421f5-bb1f-437e-b351-7fe0decab822" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode4", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0fdf3def-e88b-4630-8609-d0a217f835c0" + }, + "attachedElementGuid" : { + "value" : "84813320-a755-4b92-9db5-e07ca3cdf5bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -2, + "y" : 0, + "z" : 180 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0fdf3def-e88b-4630-8609-d0a217f835c0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0fdf3def-e88b-4630-8609-d0a217f835c0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0fdf3def-e88b-4630-8609-d0a217f835c0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode5", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3a07a623-2908-4c24-843d-117890ddca4d" + }, + "attachedElementGuid" : { + "value" : "84813320-a755-4b92-9db5-e07ca3cdf5bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 4, + "y" : 0, + "z" : 225 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3a07a623-2908-4c24-843d-117890ddca4d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3a07a623-2908-4c24-843d-117890ddca4d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3a07a623-2908-4c24-843d-117890ddca4d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode6", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b127a32d-4720-46bf-9b13-26380ac0a0b4" + }, + "attachedElementGuid" : { + "value" : "84813320-a755-4b92-9db5-e07ca3cdf5bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -2, + "y" : 0, + "z" : 270 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b127a32d-4720-46bf-9b13-26380ac0a0b4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b127a32d-4720-46bf-9b13-26380ac0a0b4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b127a32d-4720-46bf-9b13-26380ac0a0b4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode7", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3827d3ef-a323-4440-a152-f84d81af28f5" + }, + "attachedElementGuid" : { + "value" : "84813320-a755-4b92-9db5-e07ca3cdf5bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -8, + "y" : 0, + "z" : 315 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3827d3ef-a323-4440-a152-f84d81af28f5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3827d3ef-a323-4440-a152-f84d81af28f5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3827d3ef-a323-4440-a152-f84d81af28f5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode8", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2b5a5477-c8c1-42fa-aab2-ce63cd253ca3" + }, + "attachedElementGuid" : { + "value" : "84813320-a755-4b92-9db5-e07ca3cdf5bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -2, + "y" : 0, + "z" : 360 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2b5a5477-c8c1-42fa-aab2-ce63cd253ca3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2b5a5477-c8c1-42fa-aab2-ce63cd253ca3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "2b5a5477-c8c1-42fa-aab2-ce63cd253ca3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode9", + "tags" : [ + + ], + "elementGuid" : { + "value" : "90fa5b38-6e1d-4131-a196-c35518fba4ce" + }, + "attachedElementGuid" : { + "value" : "84813320-a755-4b92-9db5-e07ca3cdf5bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 4, + "y" : 0, + "z" : 405 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "90fa5b38-6e1d-4131-a196-c35518fba4ce" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "90fa5b38-6e1d-4131-a196-c35518fba4ce" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "90fa5b38-6e1d-4131-a196-c35518fba4ce" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode10", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4128b515-2f72-43f8-8345-6796cebbf77f" + }, + "attachedElementGuid" : { + "value" : "84813320-a755-4b92-9db5-e07ca3cdf5bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -2, + "y" : 0, + "z" : 450 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4128b515-2f72-43f8-8345-6796cebbf77f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4128b515-2f72-43f8-8345-6796cebbf77f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4128b515-2f72-43f8-8345-6796cebbf77f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode11", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6a2c6749-5339-45cd-9211-3f8b80bc5b34" + }, + "attachedElementGuid" : { + "value" : "84813320-a755-4b92-9db5-e07ca3cdf5bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -8, + "y" : 0, + "z" : 495 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6a2c6749-5339-45cd-9211-3f8b80bc5b34" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6a2c6749-5339-45cd-9211-3f8b80bc5b34" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6a2c6749-5339-45cd-9211-3f8b80bc5b34" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode12", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ca500669-bdd4-467f-a798-58d469a10d5d" + }, + "attachedElementGuid" : { + "value" : "84813320-a755-4b92-9db5-e07ca3cdf5bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -2, + "y" : 0, + "z" : 540 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ca500669-bdd4-467f-a798-58d469a10d5d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ca500669-bdd4-467f-a798-58d469a10d5d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ca500669-bdd4-467f-a798-58d469a10d5d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode13", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3059763a-6941-45cc-b287-d52c608a6ed1" + }, + "attachedElementGuid" : { + "value" : "84813320-a755-4b92-9db5-e07ca3cdf5bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 4, + "y" : 0, + "z" : 585 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3059763a-6941-45cc-b287-d52c608a6ed1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3059763a-6941-45cc-b287-d52c608a6ed1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3059763a-6941-45cc-b287-d52c608a6ed1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode14", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f01bde8b-ba26-4b4c-addf-7d71f7f56fae" + }, + "attachedElementGuid" : { + "value" : "84813320-a755-4b92-9db5-e07ca3cdf5bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -2, + "y" : 0, + "z" : 630 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f01bde8b-ba26-4b4c-addf-7d71f7f56fae" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f01bde8b-ba26-4b4c-addf-7d71f7f56fae" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f01bde8b-ba26-4b4c-addf-7d71f7f56fae" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode15", + "tags" : [ + + ], + "elementGuid" : { + "value" : "91eea040-c04f-485e-a58e-8be8f7eb30f6" + }, + "attachedElementGuid" : { + "value" : "84813320-a755-4b92-9db5-e07ca3cdf5bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -8, + "y" : 0, + "z" : 675 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "91eea040-c04f-485e-a58e-8be8f7eb30f6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "91eea040-c04f-485e-a58e-8be8f7eb30f6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "91eea040-c04f-485e-a58e-8be8f7eb30f6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode16", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4096f1a1-a1ba-4c48-bf74-5c2cd472f015" + }, + "attachedElementGuid" : { + "value" : "84813320-a755-4b92-9db5-e07ca3cdf5bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2, + "y" : 0, + "z" : 720 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4096f1a1-a1ba-4c48-bf74-5c2cd472f015" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4096f1a1-a1ba-4c48-bf74-5c2cd472f015" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4096f1a1-a1ba-4c48-bf74-5c2cd472f015" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode17", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fdd27864-052c-4fd9-a24c-e41a0b4aabcc" + }, + "attachedElementGuid" : { + "value" : "84813320-a755-4b92-9db5-e07ca3cdf5bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 765 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "fdd27864-052c-4fd9-a24c-e41a0b4aabcc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fdd27864-052c-4fd9-a24c-e41a0b4aabcc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "fdd27864-052c-4fd9-a24c-e41a0b4aabcc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode18", + "tags" : [ + + ], + "elementGuid" : { + "value" : "739aef49-82f7-4fcc-8bf5-bb25279ec1bd" + }, + "attachedElementGuid" : { + "value" : "84813320-a755-4b92-9db5-e07ca3cdf5bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 810 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "739aef49-82f7-4fcc-8bf5-bb25279ec1bd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "739aef49-82f7-4fcc-8bf5-bb25279ec1bd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "739aef49-82f7-4fcc-8bf5-bb25279ec1bd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode19", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9b1117a4-cc7e-4e62-9bd4-e3a5da3d8cc4" + }, + "attachedElementGuid" : { + "value" : "84813320-a755-4b92-9db5-e07ca3cdf5bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 855 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9b1117a4-cc7e-4e62-9bd4-e3a5da3d8cc4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9b1117a4-cc7e-4e62-9bd4-e3a5da3d8cc4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "9b1117a4-cc7e-4e62-9bd4-e3a5da3d8cc4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode20", + "tags" : [ + + ], + "elementGuid" : { + "value" : "381c7234-8cb5-4a58-b81f-87c648cebdb3" + }, + "attachedElementGuid" : { + "value" : "84813320-a755-4b92-9db5-e07ca3cdf5bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 900 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "381c7234-8cb5-4a58-b81f-87c648cebdb3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "381c7234-8cb5-4a58-b81f-87c648cebdb3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "381c7234-8cb5-4a58-b81f-87c648cebdb3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode21", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cfc751fb-dbd4-4444-8a88-56bf0291d969" + }, + "attachedElementGuid" : { + "value" : "84813320-a755-4b92-9db5-e07ca3cdf5bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 945 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "cfc751fb-dbd4-4444-8a88-56bf0291d969" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "cfc751fb-dbd4-4444-8a88-56bf0291d969" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "cfc751fb-dbd4-4444-8a88-56bf0291d969" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode22", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ca46a29d-18bd-4077-b20d-c3af7594c118" + }, + "attachedElementGuid" : { + "value" : "84813320-a755-4b92-9db5-e07ca3cdf5bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 990 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ca46a29d-18bd-4077-b20d-c3af7594c118" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ca46a29d-18bd-4077-b20d-c3af7594c118" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ca46a29d-18bd-4077-b20d-c3af7594c118" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode23", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3acf36cc-c639-4673-a679-f84aa3f49781" + }, + "attachedElementGuid" : { + "value" : "84813320-a755-4b92-9db5-e07ca3cdf5bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 1035 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3acf36cc-c639-4673-a679-f84aa3f49781" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3acf36cc-c639-4673-a679-f84aa3f49781" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3acf36cc-c639-4673-a679-f84aa3f49781" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode24", + "tags" : [ + + ], + "elementGuid" : { + "value" : "efe5993b-33d7-4f62-8308-b03bb9fd3d2b" + }, + "attachedElementGuid" : { + "value" : "84813320-a755-4b92-9db5-e07ca3cdf5bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 1080 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "efe5993b-33d7-4f62-8308-b03bb9fd3d2b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "efe5993b-33d7-4f62-8308-b03bb9fd3d2b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "efe5993b-33d7-4f62-8308-b03bb9fd3d2b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode25", + "tags" : [ + + ], + "elementGuid" : { + "value" : "38d2fb14-4426-4064-baed-49a5260d0e28" + }, + "attachedElementGuid" : { + "value" : "84813320-a755-4b92-9db5-e07ca3cdf5bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 1125 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "38d2fb14-4426-4064-baed-49a5260d0e28" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "38d2fb14-4426-4064-baed-49a5260d0e28" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "38d2fb14-4426-4064-baed-49a5260d0e28" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode26", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d60796c8-d71c-40b2-a568-fc818284dfc2" + }, + "attachedElementGuid" : { + "value" : "84813320-a755-4b92-9db5-e07ca3cdf5bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 1170 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d60796c8-d71c-40b2-a568-fc818284dfc2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d60796c8-d71c-40b2-a568-fc818284dfc2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d60796c8-d71c-40b2-a568-fc818284dfc2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode27", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4be1d816-0f1b-4f09-9214-7409863af542" + }, + "attachedElementGuid" : { + "value" : "84813320-a755-4b92-9db5-e07ca3cdf5bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 1215 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4be1d816-0f1b-4f09-9214-7409863af542" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4be1d816-0f1b-4f09-9214-7409863af542" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4be1d816-0f1b-4f09-9214-7409863af542" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode28", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3823e366-1fba-4bcc-aa4a-3c2420e54460" + }, + "attachedElementGuid" : { + "value" : "84813320-a755-4b92-9db5-e07ca3cdf5bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 1260 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3823e366-1fba-4bcc-aa4a-3c2420e54460" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3823e366-1fba-4bcc-aa4a-3c2420e54460" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3823e366-1fba-4bcc-aa4a-3c2420e54460" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode29", + "tags" : [ + + ], + "elementGuid" : { + "value" : "70604cff-f664-40ec-9648-eaea8166344e" + }, + "attachedElementGuid" : { + "value" : "84813320-a755-4b92-9db5-e07ca3cdf5bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 1305 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "70604cff-f664-40ec-9648-eaea8166344e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "70604cff-f664-40ec-9648-eaea8166344e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "70604cff-f664-40ec-9648-eaea8166344e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode30", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4f373bf3-eb8b-47ee-a0c3-2c698e0dd907" + }, + "attachedElementGuid" : { + "value" : "84813320-a755-4b92-9db5-e07ca3cdf5bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 1350 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4f373bf3-eb8b-47ee-a0c3-2c698e0dd907" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4f373bf3-eb8b-47ee-a0c3-2c698e0dd907" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4f373bf3-eb8b-47ee-a0c3-2c698e0dd907" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode31", + "tags" : [ + + ], + "elementGuid" : { + "value" : "428461e1-a572-4c2d-b169-85ef71bf3272" + }, + "attachedElementGuid" : { + "value" : "84813320-a755-4b92-9db5-e07ca3cdf5bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 1395 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "428461e1-a572-4c2d-b169-85ef71bf3272" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "428461e1-a572-4c2d-b169-85ef71bf3272" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "428461e1-a572-4c2d-b169-85ef71bf3272" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode32", + "tags" : [ + + ], + "elementGuid" : { + "value" : "38910d0c-22da-4573-a0dc-952707dc4955" + }, + "attachedElementGuid" : { + "value" : "84813320-a755-4b92-9db5-e07ca3cdf5bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 1440 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "38910d0c-22da-4573-a0dc-952707dc4955" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "38910d0c-22da-4573-a0dc-952707dc4955" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "38910d0c-22da-4573-a0dc-952707dc4955" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 48.84005, + "elementName" : "Tap (48.84005)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4253c7fa-160a-41e6-96d5-792cb5d0be9b" + }, + "attachedElementGuid" : { + "value" : "e77bbc70-fcdd-4212-9415-f60b37ee8281" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4253c7fa-160a-41e6-96d5-792cb5d0be9b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "4253c7fa-160a-41e6-96d5-792cb5d0be9b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "4253c7fa-160a-41e6-96d5-792cb5d0be9b" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4328c711-9ab5-4fda-8cc2-6ad7442fbc5e" + }, + "attachedElementGuid" : { + "value" : "4253c7fa-160a-41e6-96d5-792cb5d0be9b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4328c711-9ab5-4fda-8cc2-6ad7442fbc5e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4328c711-9ab5-4fda-8cc2-6ad7442fbc5e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4328c711-9ab5-4fda-8cc2-6ad7442fbc5e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "4328c711-9ab5-4fda-8cc2-6ad7442fbc5e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 48.84005, + "elementName" : "Tap (48.84005)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "550d6cd3-8e03-4abc-8e23-1585ec8a8d10" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "550d6cd3-8e03-4abc-8e23-1585ec8a8d10" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "550d6cd3-8e03-4abc-8e23-1585ec8a8d10" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "550d6cd3-8e03-4abc-8e23-1585ec8a8d10" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8e478c33-75d4-441a-bbf0-7a6b2dc88b44" + }, + "attachedElementGuid" : { + "value" : "550d6cd3-8e03-4abc-8e23-1585ec8a8d10" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8e478c33-75d4-441a-bbf0-7a6b2dc88b44" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8e478c33-75d4-441a-bbf0-7a6b2dc88b44" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8e478c33-75d4-441a-bbf0-7a6b2dc88b44" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "8e478c33-75d4-441a-bbf0-7a6b2dc88b44" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 48.8949928, + "elementName" : "Stay (48.89499)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "52743534-552d-4c3b-8b14-ed569e311d39" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "52743534-552d-4c3b-8b14-ed569e311d39" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "52743534-552d-4c3b-8b14-ed569e311d39" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "52743534-552d-4c3b-8b14-ed569e311d39" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c1c86c52-10aa-42e5-8e98-0544e21206f1" + }, + "attachedElementGuid" : { + "value" : "52743534-552d-4c3b-8b14-ed569e311d39" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c1c86c52-10aa-42e5-8e98-0544e21206f1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c1c86c52-10aa-42e5-8e98-0544e21206f1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c1c86c52-10aa-42e5-8e98-0544e21206f1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "c1c86c52-10aa-42e5-8e98-0544e21206f1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 48.9499931, + "elementName" : "Stay (48.94999)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b3afb7a7-b926-48f9-bac3-a55b78d0919e" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b3afb7a7-b926-48f9-bac3-a55b78d0919e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "b3afb7a7-b926-48f9-bac3-a55b78d0919e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "b3afb7a7-b926-48f9-bac3-a55b78d0919e" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5b9691d0-1506-47e3-8b2c-fab978d2c739" + }, + "attachedElementGuid" : { + "value" : "b3afb7a7-b926-48f9-bac3-a55b78d0919e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5b9691d0-1506-47e3-8b2c-fab978d2c739" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5b9691d0-1506-47e3-8b2c-fab978d2c739" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5b9691d0-1506-47e3-8b2c-fab978d2c739" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "5b9691d0-1506-47e3-8b2c-fab978d2c739" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 49.0049934, + "elementName" : "Stay (49.00499)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2b5984e5-7421-4ecb-89f8-114afb1fccfc" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2b5984e5-7421-4ecb-89f8-114afb1fccfc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "2b5984e5-7421-4ecb-89f8-114afb1fccfc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "2b5984e5-7421-4ecb-89f8-114afb1fccfc" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3a9b6b1b-8335-4893-8dea-a2c67b0b5aaf" + }, + "attachedElementGuid" : { + "value" : "2b5984e5-7421-4ecb-89f8-114afb1fccfc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3a9b6b1b-8335-4893-8dea-a2c67b0b5aaf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3a9b6b1b-8335-4893-8dea-a2c67b0b5aaf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3a9b6b1b-8335-4893-8dea-a2c67b0b5aaf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "3a9b6b1b-8335-4893-8dea-a2c67b0b5aaf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 49.17005, + "elementName" : "Tap (49.17005)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6ca75ee9-f085-4b7e-90be-864d7a8bc7bf" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6ca75ee9-f085-4b7e-90be-864d7a8bc7bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "6ca75ee9-f085-4b7e-90be-864d7a8bc7bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "6ca75ee9-f085-4b7e-90be-864d7a8bc7bf" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b2c4fbb4-7529-4151-ad91-6f546ca612c2" + }, + "attachedElementGuid" : { + "value" : "6ca75ee9-f085-4b7e-90be-864d7a8bc7bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b2c4fbb4-7529-4151-ad91-6f546ca612c2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b2c4fbb4-7529-4151-ad91-6f546ca612c2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b2c4fbb4-7529-4151-ad91-6f546ca612c2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "b2c4fbb4-7529-4151-ad91-6f546ca612c2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 49.17005, + "elementName" : "Tap (49.17005)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ce5b6f1d-4d80-4f3f-8f49-4d5fc09e6388" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ce5b6f1d-4d80-4f3f-8f49-4d5fc09e6388" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "ce5b6f1d-4d80-4f3f-8f49-4d5fc09e6388" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "ce5b6f1d-4d80-4f3f-8f49-4d5fc09e6388" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cb5c8157-c5a2-45b1-b567-6795a748d7b5" + }, + "attachedElementGuid" : { + "value" : "ce5b6f1d-4d80-4f3f-8f49-4d5fc09e6388" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "cb5c8157-c5a2-45b1-b567-6795a748d7b5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "cb5c8157-c5a2-45b1-b567-6795a748d7b5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "cb5c8157-c5a2-45b1-b567-6795a748d7b5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "cb5c8157-c5a2-45b1-b567-6795a748d7b5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 49.2250023, + "elementName" : "Stay (49.225)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "50ec3f93-2c89-40ad-9e1f-c7bfc0e02f29" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "50ec3f93-2c89-40ad-9e1f-c7bfc0e02f29" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "50ec3f93-2c89-40ad-9e1f-c7bfc0e02f29" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "50ec3f93-2c89-40ad-9e1f-c7bfc0e02f29" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "94acad67-ec60-464e-acb5-55bf5b76b914" + }, + "attachedElementGuid" : { + "value" : "50ec3f93-2c89-40ad-9e1f-c7bfc0e02f29" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "94acad67-ec60-464e-acb5-55bf5b76b914" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "94acad67-ec60-464e-acb5-55bf5b76b914" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "94acad67-ec60-464e-acb5-55bf5b76b914" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "94acad67-ec60-464e-acb5-55bf5b76b914" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 49.2800026, + "elementName" : "Stay (49.28)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "da09f004-5d88-43d8-a936-2a69765fd000" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "da09f004-5d88-43d8-a936-2a69765fd000" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "da09f004-5d88-43d8-a936-2a69765fd000" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "da09f004-5d88-43d8-a936-2a69765fd000" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "11f4c7cf-86a0-446e-a467-97828dde4325" + }, + "attachedElementGuid" : { + "value" : "da09f004-5d88-43d8-a936-2a69765fd000" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "11f4c7cf-86a0-446e-a467-97828dde4325" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "11f4c7cf-86a0-446e-a467-97828dde4325" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "11f4c7cf-86a0-446e-a467-97828dde4325" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "11f4c7cf-86a0-446e-a467-97828dde4325" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 49.3350067, + "elementName" : "Stay (49.33501)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "66d1cfa5-9bc2-4e1e-bbb7-b6cfa1c6eb19" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "66d1cfa5-9bc2-4e1e-bbb7-b6cfa1c6eb19" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "66d1cfa5-9bc2-4e1e-bbb7-b6cfa1c6eb19" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "66d1cfa5-9bc2-4e1e-bbb7-b6cfa1c6eb19" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "80939467-c067-4bf3-8729-0c8f26fda6f7" + }, + "attachedElementGuid" : { + "value" : "66d1cfa5-9bc2-4e1e-bbb7-b6cfa1c6eb19" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "80939467-c067-4bf3-8729-0c8f26fda6f7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "80939467-c067-4bf3-8729-0c8f26fda6f7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "80939467-c067-4bf3-8729-0c8f26fda6f7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "80939467-c067-4bf3-8729-0c8f26fda6f7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 49.5000648, + "elementName" : "Tap (49.50006)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "36b2f5fb-6c6e-4ce5-8567-cffa369c5525" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "36b2f5fb-6c6e-4ce5-8567-cffa369c5525" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "36b2f5fb-6c6e-4ce5-8567-cffa369c5525" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "36b2f5fb-6c6e-4ce5-8567-cffa369c5525" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f82e37ac-5e4d-4bbc-b128-fdf52658b959" + }, + "attachedElementGuid" : { + "value" : "36b2f5fb-6c6e-4ce5-8567-cffa369c5525" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f82e37ac-5e4d-4bbc-b128-fdf52658b959" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f82e37ac-5e4d-4bbc-b128-fdf52658b959" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f82e37ac-5e4d-4bbc-b128-fdf52658b959" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "f82e37ac-5e4d-4bbc-b128-fdf52658b959" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 49.6100655, + "elementName" : "Tap (49.61007)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "05067432-564c-4900-9766-f25cacb42dfb" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "05067432-564c-4900-9766-f25cacb42dfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "05067432-564c-4900-9766-f25cacb42dfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "05067432-564c-4900-9766-f25cacb42dfb" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "98af586e-b8e0-4a85-a066-e93a99dc2fe4" + }, + "attachedElementGuid" : { + "value" : "05067432-564c-4900-9766-f25cacb42dfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "98af586e-b8e0-4a85-a066-e93a99dc2fe4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "98af586e-b8e0-4a85-a066-e93a99dc2fe4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "98af586e-b8e0-4a85-a066-e93a99dc2fe4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "98af586e-b8e0-4a85-a066-e93a99dc2fe4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Hold_BM,Assembly-CSharp", + "holdEndTime" : 50.4900627, + "exactJudgeTime" : 49.8300629, + "elementName" : "Hold (49.83006-50.49006)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a58dde62-876c-49e1-87a9-858fa51d2ed2" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a58dde62-876c-49e1-87a9-858fa51d2ed2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "a58dde62-876c-49e1-87a9-858fa51d2ed2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "a58dde62-876c-49e1-87a9-858fa51d2ed2" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisualHold_BM,Assembly-CSharp", + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualHold", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c1a96c39-910b-45ea-bdc5-dd3bb53e0d14" + }, + "attachedElementGuid" : { + "value" : "a58dde62-876c-49e1-87a9-858fa51d2ed2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c1a96c39-910b-45ea-bdc5-dd3bb53e0d14" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c1a96c39-910b-45ea-bdc5-dd3bb53e0d14" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c1a96c39-910b-45ea-bdc5-dd3bb53e0d14" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExtend_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.5 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteHoldingBreath_BM,Assembly-CSharp", + "effectTime" : 0.659999847 + } + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "c1a96c39-910b-45ea-bdc5-dd3bb53e0d14" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 49.7200623, + "elementName" : "Tap (49.72006)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b78202fe-d502-482f-9d61-268585b7ce9b" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b78202fe-d502-482f-9d61-268585b7ce9b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "b78202fe-d502-482f-9d61-268585b7ce9b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "b78202fe-d502-482f-9d61-268585b7ce9b" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8fb87fae-2125-4db3-b133-9a46b233edb8" + }, + "attachedElementGuid" : { + "value" : "b78202fe-d502-482f-9d61-268585b7ce9b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8fb87fae-2125-4db3-b133-9a46b233edb8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8fb87fae-2125-4db3-b133-9a46b233edb8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8fb87fae-2125-4db3-b133-9a46b233edb8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "8fb87fae-2125-4db3-b133-9a46b233edb8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Hold_BM,Assembly-CSharp", + "holdEndTime" : 50.8200531, + "exactJudgeTime" : 50.49005, + "elementName" : "Hold (50.49005-50.82005)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2c3c5d5a-5c44-4115-b398-5b6aaaa1a012" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2c3c5d5a-5c44-4115-b398-5b6aaaa1a012" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "2c3c5d5a-5c44-4115-b398-5b6aaaa1a012" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "2c3c5d5a-5c44-4115-b398-5b6aaaa1a012" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisualHold_BM,Assembly-CSharp", + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualHold", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "079182e4-7c3c-4dd9-84ae-172407d23daf" + }, + "attachedElementGuid" : { + "value" : "2c3c5d5a-5c44-4115-b398-5b6aaaa1a012" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "079182e4-7c3c-4dd9-84ae-172407d23daf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "079182e4-7c3c-4dd9-84ae-172407d23daf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "079182e4-7c3c-4dd9-84ae-172407d23daf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExtend_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.5 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteHoldingBreath_BM,Assembly-CSharp", + "effectTime" : 0.330001831 + } + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "079182e4-7c3c-4dd9-84ae-172407d23daf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Hold_BM,Assembly-CSharp", + "holdEndTime" : 51.15005, + "exactJudgeTime" : 50.82005, + "elementName" : "Hold (50.82005-51.15005)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "09cad66c-a476-40eb-bd76-76f83bf904ea" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "09cad66c-a476-40eb-bd76-76f83bf904ea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "09cad66c-a476-40eb-bd76-76f83bf904ea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "09cad66c-a476-40eb-bd76-76f83bf904ea" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisualHold_BM,Assembly-CSharp", + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualHold", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3487432c-9fe2-450a-88cf-b3a84956e594" + }, + "attachedElementGuid" : { + "value" : "09cad66c-a476-40eb-bd76-76f83bf904ea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3487432c-9fe2-450a-88cf-b3a84956e594" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3487432c-9fe2-450a-88cf-b3a84956e594" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3487432c-9fe2-450a-88cf-b3a84956e594" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExtend_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.5 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteHoldingBreath_BM,Assembly-CSharp", + "effectTime" : 0.330001831 + } + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "3487432c-9fe2-450a-88cf-b3a84956e594" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Hold_BM,Assembly-CSharp", + "holdEndTime" : 51.4800453, + "exactJudgeTime" : 51.1500435, + "elementName" : "Hold (51.15004-51.48005)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f78a0ce5-1654-447c-93c7-04236e217ece" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f78a0ce5-1654-447c-93c7-04236e217ece" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "f78a0ce5-1654-447c-93c7-04236e217ece" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "f78a0ce5-1654-447c-93c7-04236e217ece" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisualHold_BM,Assembly-CSharp", + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualHold", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "412c68a7-ba9f-44bc-9ba1-d4117e3cd299" + }, + "attachedElementGuid" : { + "value" : "f78a0ce5-1654-447c-93c7-04236e217ece" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "412c68a7-ba9f-44bc-9ba1-d4117e3cd299" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "412c68a7-ba9f-44bc-9ba1-d4117e3cd299" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "412c68a7-ba9f-44bc-9ba1-d4117e3cd299" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExtend_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.5 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteHoldingBreath_BM,Assembly-CSharp", + "effectTime" : 0.330001831 + } + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "412c68a7-ba9f-44bc-9ba1-d4117e3cd299" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Hold_BM,Assembly-CSharp", + "holdEndTime" : 51.81004, + "exactJudgeTime" : 51.4800377, + "elementName" : "Hold (51.48004-51.81004)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d7364a84-aec9-422d-9d6d-584494489a40" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d7364a84-aec9-422d-9d6d-584494489a40" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "d7364a84-aec9-422d-9d6d-584494489a40" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "d7364a84-aec9-422d-9d6d-584494489a40" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisualHold_BM,Assembly-CSharp", + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualHold", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e54de4a7-df3d-4d89-8b53-718ae9ad8174" + }, + "attachedElementGuid" : { + "value" : "d7364a84-aec9-422d-9d6d-584494489a40" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e54de4a7-df3d-4d89-8b53-718ae9ad8174" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e54de4a7-df3d-4d89-8b53-718ae9ad8174" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e54de4a7-df3d-4d89-8b53-718ae9ad8174" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExtend_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.5 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteHoldingBreath_BM,Assembly-CSharp", + "effectTime" : 0.330001831 + } + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "e54de4a7-df3d-4d89-8b53-718ae9ad8174" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 52.1400528, + "elementName" : "Tap (52.14005)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "34f00714-36b2-4393-ae3f-e6407175c13f" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "34f00714-36b2-4393-ae3f-e6407175c13f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "34f00714-36b2-4393-ae3f-e6407175c13f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "34f00714-36b2-4393-ae3f-e6407175c13f" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "14e3559e-b0b9-41f0-8c1f-f29f7b1ef115" + }, + "attachedElementGuid" : { + "value" : "34f00714-36b2-4393-ae3f-e6407175c13f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "14e3559e-b0b9-41f0-8c1f-f29f7b1ef115" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "14e3559e-b0b9-41f0-8c1f-f29f7b1ef115" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "14e3559e-b0b9-41f0-8c1f-f29f7b1ef115" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "14e3559e-b0b9-41f0-8c1f-f29f7b1ef115" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 52.3050537, + "elementName" : "Tap (52.30505)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "172bf688-3444-46d3-81ae-c232e27546cb" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "172bf688-3444-46d3-81ae-c232e27546cb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "172bf688-3444-46d3-81ae-c232e27546cb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "172bf688-3444-46d3-81ae-c232e27546cb" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "13336fbe-38a8-43d8-b67e-a87752f46cd7" + }, + "attachedElementGuid" : { + "value" : "172bf688-3444-46d3-81ae-c232e27546cb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "13336fbe-38a8-43d8-b67e-a87752f46cd7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "13336fbe-38a8-43d8-b67e-a87752f46cd7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "13336fbe-38a8-43d8-b67e-a87752f46cd7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "13336fbe-38a8-43d8-b67e-a87752f46cd7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 52.3875542, + "elementName" : "Tap (52.38755)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "793424db-300b-48d4-99ff-c7f458ccce73" + }, + "attachedElementGuid" : { + "value" : "e77bbc70-fcdd-4212-9415-f60b37ee8281" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "793424db-300b-48d4-99ff-c7f458ccce73" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "793424db-300b-48d4-99ff-c7f458ccce73" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "793424db-300b-48d4-99ff-c7f458ccce73" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "82e5f3c6-89d0-48e7-876d-b44916d46cce" + }, + "attachedElementGuid" : { + "value" : "793424db-300b-48d4-99ff-c7f458ccce73" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "82e5f3c6-89d0-48e7-876d-b44916d46cce" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "82e5f3c6-89d0-48e7-876d-b44916d46cce" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "82e5f3c6-89d0-48e7-876d-b44916d46cce" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "82e5f3c6-89d0-48e7-876d-b44916d46cce" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 52.4700546, + "elementName" : "Tap (52.47005)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a59966d9-23af-486c-b50c-dc55e1a7b2a5" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a59966d9-23af-486c-b50c-dc55e1a7b2a5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "a59966d9-23af-486c-b50c-dc55e1a7b2a5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "a59966d9-23af-486c-b50c-dc55e1a7b2a5" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "40e2b58f-fb3a-41fc-b63c-536f24584b06" + }, + "attachedElementGuid" : { + "value" : "a59966d9-23af-486c-b50c-dc55e1a7b2a5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "40e2b58f-fb3a-41fc-b63c-536f24584b06" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "40e2b58f-fb3a-41fc-b63c-536f24584b06" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "40e2b58f-fb3a-41fc-b63c-536f24584b06" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "40e2b58f-fb3a-41fc-b63c-536f24584b06" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Flick_BM,Assembly-CSharp", + "availableFlickDirections" : [ + + ], + "exactJudgeTime" : 51.8100548, + "elementName" : "Flick (51.81005)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a3fcfd05-0e9a-4c98-ab3e-a52a163e43ff" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a3fcfd05-0e9a-4c98-ab3e-a52a163e43ff" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "a3fcfd05-0e9a-4c98-ab3e-a52a163e43ff" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "a3fcfd05-0e9a-4c98-ab3e-a52a163e43ff" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualFlick", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6bd4a5b2-c630-4e81-a882-f9760fda3e1f" + }, + "attachedElementGuid" : { + "value" : "a3fcfd05-0e9a-4c98-ab3e-a52a163e43ff" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1.7, + "y" : 1.7, + "z" : 1.7 + }, + "attachedElementGuid" : { + "value" : "6bd4a5b2-c630-4e81-a882-f9760fda3e1f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6bd4a5b2-c630-4e81-a882-f9760fda3e1f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6bd4a5b2-c630-4e81-a882-f9760fda3e1f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "6bd4a5b2-c630-4e81-a882-f9760fda3e1f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 52.6350555, + "elementName" : "Tap (52.63506)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "617eb568-de24-42b9-9173-3b54ce000225" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "617eb568-de24-42b9-9173-3b54ce000225" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "617eb568-de24-42b9-9173-3b54ce000225" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "617eb568-de24-42b9-9173-3b54ce000225" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a9b5b990-0266-4769-a5e5-b74d501902d0" + }, + "attachedElementGuid" : { + "value" : "617eb568-de24-42b9-9173-3b54ce000225" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a9b5b990-0266-4769-a5e5-b74d501902d0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a9b5b990-0266-4769-a5e5-b74d501902d0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a9b5b990-0266-4769-a5e5-b74d501902d0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "a9b5b990-0266-4769-a5e5-b74d501902d0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Hold_BM,Assembly-CSharp", + "holdEndTime" : 53.13006, + "exactJudgeTime" : 52.8000565, + "elementName" : "Hold (52.80006-53.13006)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b2821759-c086-4256-a321-ff65a8462743" + }, + "attachedElementGuid" : { + "value" : "e77bbc70-fcdd-4212-9415-f60b37ee8281" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b2821759-c086-4256-a321-ff65a8462743" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "b2821759-c086-4256-a321-ff65a8462743" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "b2821759-c086-4256-a321-ff65a8462743" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisualHold_BM,Assembly-CSharp", + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualHold", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ac228515-b54e-481e-af75-26d99fa3c5bd" + }, + "attachedElementGuid" : { + "value" : "b2821759-c086-4256-a321-ff65a8462743" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ac228515-b54e-481e-af75-26d99fa3c5bd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ac228515-b54e-481e-af75-26d99fa3c5bd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ac228515-b54e-481e-af75-26d99fa3c5bd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExtend_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.5 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteHoldingBreath_BM,Assembly-CSharp", + "effectTime" : 0.330001831 + } + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "ac228515-b54e-481e-af75-26d99fa3c5bd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 53.46001, + "elementName" : "Tap (53.46001)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4f3de786-1ad2-4439-ad19-2478418ab3e2" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4f3de786-1ad2-4439-ad19-2478418ab3e2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "4f3de786-1ad2-4439-ad19-2478418ab3e2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "4f3de786-1ad2-4439-ad19-2478418ab3e2" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e3329b9f-0cb2-480c-8e3b-8db3f2cc7dbf" + }, + "attachedElementGuid" : { + "value" : "4f3de786-1ad2-4439-ad19-2478418ab3e2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e3329b9f-0cb2-480c-8e3b-8db3f2cc7dbf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e3329b9f-0cb2-480c-8e3b-8db3f2cc7dbf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e3329b9f-0cb2-480c-8e3b-8db3f2cc7dbf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "e3329b9f-0cb2-480c-8e3b-8db3f2cc7dbf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 53.6250572, + "elementName" : "Tap (53.62506)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f87dcc55-d66e-4670-9cd8-a373e326ca13" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f87dcc55-d66e-4670-9cd8-a373e326ca13" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "f87dcc55-d66e-4670-9cd8-a373e326ca13" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "f87dcc55-d66e-4670-9cd8-a373e326ca13" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1be85c08-3fe1-44c1-ac72-a55c5dafc821" + }, + "attachedElementGuid" : { + "value" : "f87dcc55-d66e-4670-9cd8-a373e326ca13" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "1be85c08-3fe1-44c1-ac72-a55c5dafc821" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1be85c08-3fe1-44c1-ac72-a55c5dafc821" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "1be85c08-3fe1-44c1-ac72-a55c5dafc821" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "1be85c08-3fe1-44c1-ac72-a55c5dafc821" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 53.7900543, + "elementName" : "Tap (53.79005)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "da5af954-c8bc-4b5a-9109-00cd103bf82e" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "da5af954-c8bc-4b5a-9109-00cd103bf82e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "da5af954-c8bc-4b5a-9109-00cd103bf82e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "da5af954-c8bc-4b5a-9109-00cd103bf82e" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f0a2b57b-e2b4-4672-8f6c-6a4df4061dd6" + }, + "attachedElementGuid" : { + "value" : "da5af954-c8bc-4b5a-9109-00cd103bf82e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f0a2b57b-e2b4-4672-8f6c-6a4df4061dd6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f0a2b57b-e2b4-4672-8f6c-6a4df4061dd6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f0a2b57b-e2b4-4672-8f6c-6a4df4061dd6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "f0a2b57b-e2b4-4672-8f6c-6a4df4061dd6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Hold_BM,Assembly-CSharp", + "holdEndTime" : 54.45, + "exactJudgeTime" : 54.12, + "elementName" : "Hold (54.12-54.45)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "489a90bc-aebd-4ef1-8eeb-d9c4cd55eee2" + }, + "attachedElementGuid" : { + "value" : "e77bbc70-fcdd-4212-9415-f60b37ee8281" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "489a90bc-aebd-4ef1-8eeb-d9c4cd55eee2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "489a90bc-aebd-4ef1-8eeb-d9c4cd55eee2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "489a90bc-aebd-4ef1-8eeb-d9c4cd55eee2" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisualHold_BM,Assembly-CSharp", + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualHold", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6c789fee-7de1-4670-8e01-81f3bd0e28ea" + }, + "attachedElementGuid" : { + "value" : "489a90bc-aebd-4ef1-8eeb-d9c4cd55eee2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6c789fee-7de1-4670-8e01-81f3bd0e28ea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6c789fee-7de1-4670-8e01-81f3bd0e28ea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6c789fee-7de1-4670-8e01-81f3bd0e28ea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExtend_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.5 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteHoldingBreath_BM,Assembly-CSharp", + "effectTime" : 0.330001831 + } + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "6c789fee-7de1-4670-8e01-81f3bd0e28ea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 54.12, + "elementName" : "Tap (54.12)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "70106537-5fce-49de-89ce-51001fcdd55e" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "70106537-5fce-49de-89ce-51001fcdd55e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "70106537-5fce-49de-89ce-51001fcdd55e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "70106537-5fce-49de-89ce-51001fcdd55e" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "abb7fdea-9441-41fb-ad80-3dd2dc044b29" + }, + "attachedElementGuid" : { + "value" : "70106537-5fce-49de-89ce-51001fcdd55e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "abb7fdea-9441-41fb-ad80-3dd2dc044b29" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "abb7fdea-9441-41fb-ad80-3dd2dc044b29" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "abb7fdea-9441-41fb-ad80-3dd2dc044b29" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "abb7fdea-9441-41fb-ad80-3dd2dc044b29" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Hold_BM,Assembly-CSharp", + "holdEndTime" : 54.78006, + "exactJudgeTime" : 54.450058, + "elementName" : "Hold (54.45006-54.78006)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a883c53c-5964-454e-a1d9-221b2b190802" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a883c53c-5964-454e-a1d9-221b2b190802" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "a883c53c-5964-454e-a1d9-221b2b190802" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "a883c53c-5964-454e-a1d9-221b2b190802" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisualHold_BM,Assembly-CSharp", + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualHold", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "22733a10-91cf-4dfe-b5fb-8f7859f272dd" + }, + "attachedElementGuid" : { + "value" : "a883c53c-5964-454e-a1d9-221b2b190802" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "22733a10-91cf-4dfe-b5fb-8f7859f272dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "22733a10-91cf-4dfe-b5fb-8f7859f272dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "22733a10-91cf-4dfe-b5fb-8f7859f272dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExtend_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.5 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteHoldingBreath_BM,Assembly-CSharp", + "effectTime" : 0.330001831 + } + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "22733a10-91cf-4dfe-b5fb-8f7859f272dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Hold_BM,Assembly-CSharp", + "holdEndTime" : 55.1100578, + "exactJudgeTime" : 54.780056, + "elementName" : "Hold (54.78006-55.11006)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "404a0df1-0942-49ed-94b2-fbc451c9f946" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "404a0df1-0942-49ed-94b2-fbc451c9f946" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "404a0df1-0942-49ed-94b2-fbc451c9f946" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "404a0df1-0942-49ed-94b2-fbc451c9f946" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisualHold_BM,Assembly-CSharp", + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualHold", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "18be1033-d046-4ebb-93b5-a7482e1b3479" + }, + "attachedElementGuid" : { + "value" : "404a0df1-0942-49ed-94b2-fbc451c9f946" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "18be1033-d046-4ebb-93b5-a7482e1b3479" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "18be1033-d046-4ebb-93b5-a7482e1b3479" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "18be1033-d046-4ebb-93b5-a7482e1b3479" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExtend_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.5 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteHoldingBreath_BM,Assembly-CSharp", + "effectTime" : 0.330001831 + } + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "18be1033-d046-4ebb-93b5-a7482e1b3479" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Hold_BM,Assembly-CSharp", + "holdEndTime" : 55.4399872, + "exactJudgeTime" : 55.1099854, + "elementName" : "Hold (55.10999-55.43999)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "aeaac55a-c7d5-4a0d-958e-5eb735e3323e" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "aeaac55a-c7d5-4a0d-958e-5eb735e3323e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "aeaac55a-c7d5-4a0d-958e-5eb735e3323e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "aeaac55a-c7d5-4a0d-958e-5eb735e3323e" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisualHold_BM,Assembly-CSharp", + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualHold", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e3411ed2-9dca-4e4c-8c38-f0e88c5cb9da" + }, + "attachedElementGuid" : { + "value" : "aeaac55a-c7d5-4a0d-958e-5eb735e3323e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e3411ed2-9dca-4e4c-8c38-f0e88c5cb9da" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e3411ed2-9dca-4e4c-8c38-f0e88c5cb9da" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e3411ed2-9dca-4e4c-8c38-f0e88c5cb9da" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExtend_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.5 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteHoldingBreath_BM,Assembly-CSharp", + "effectTime" : 0.330001831 + } + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "e3411ed2-9dca-4e4c-8c38-f0e88c5cb9da" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 55.4400558, + "elementName" : "Tap (55.44006)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "659fed53-37dd-428a-ad8b-c5e6bab509f8" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "659fed53-37dd-428a-ad8b-c5e6bab509f8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "659fed53-37dd-428a-ad8b-c5e6bab509f8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "659fed53-37dd-428a-ad8b-c5e6bab509f8" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b50ec8d7-27c9-4be6-8b2b-1a56f0f8c407" + }, + "attachedElementGuid" : { + "value" : "659fed53-37dd-428a-ad8b-c5e6bab509f8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b50ec8d7-27c9-4be6-8b2b-1a56f0f8c407" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b50ec8d7-27c9-4be6-8b2b-1a56f0f8c407" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b50ec8d7-27c9-4be6-8b2b-1a56f0f8c407" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "b50ec8d7-27c9-4be6-8b2b-1a56f0f8c407" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 55.4952, + "elementName" : "Stay (55.4952)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5ca34e99-b148-4afa-b258-74daa4219648" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5ca34e99-b148-4afa-b258-74daa4219648" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "5ca34e99-b148-4afa-b258-74daa4219648" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "5ca34e99-b148-4afa-b258-74daa4219648" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "655b7c66-b7ba-400c-8dee-6a86d3353a57" + }, + "attachedElementGuid" : { + "value" : "5ca34e99-b148-4afa-b258-74daa4219648" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "655b7c66-b7ba-400c-8dee-6a86d3353a57" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "655b7c66-b7ba-400c-8dee-6a86d3353a57" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "655b7c66-b7ba-400c-8dee-6a86d3353a57" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "655b7c66-b7ba-400c-8dee-6a86d3353a57" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 55.5502, + "elementName" : "Stay (55.5502)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "98818973-a6fd-46f1-873b-8cc2f97fa945" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "98818973-a6fd-46f1-873b-8cc2f97fa945" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "98818973-a6fd-46f1-873b-8cc2f97fa945" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "98818973-a6fd-46f1-873b-8cc2f97fa945" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4a2892fb-322c-4a3c-936d-9fec7941ac49" + }, + "attachedElementGuid" : { + "value" : "98818973-a6fd-46f1-873b-8cc2f97fa945" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4a2892fb-322c-4a3c-936d-9fec7941ac49" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4a2892fb-322c-4a3c-936d-9fec7941ac49" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4a2892fb-322c-4a3c-936d-9fec7941ac49" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "4a2892fb-322c-4a3c-936d-9fec7941ac49" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 55.6052, + "elementName" : "Stay (55.6052)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d36342f8-b746-4681-88e4-4f7e95945212" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d36342f8-b746-4681-88e4-4f7e95945212" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "d36342f8-b746-4681-88e4-4f7e95945212" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "d36342f8-b746-4681-88e4-4f7e95945212" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9735ce7a-9160-4667-be55-927914f5b600" + }, + "attachedElementGuid" : { + "value" : "d36342f8-b746-4681-88e4-4f7e95945212" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9735ce7a-9160-4667-be55-927914f5b600" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9735ce7a-9160-4667-be55-927914f5b600" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "9735ce7a-9160-4667-be55-927914f5b600" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "9735ce7a-9160-4667-be55-927914f5b600" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 55.6602058, + "elementName" : "Stay (55.66021)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5903e63a-6548-4806-bea7-50194bd48ff0" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5903e63a-6548-4806-bea7-50194bd48ff0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "5903e63a-6548-4806-bea7-50194bd48ff0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "5903e63a-6548-4806-bea7-50194bd48ff0" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "80075989-c7b7-4e53-b438-436901c02bce" + }, + "attachedElementGuid" : { + "value" : "5903e63a-6548-4806-bea7-50194bd48ff0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "80075989-c7b7-4e53-b438-436901c02bce" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "80075989-c7b7-4e53-b438-436901c02bce" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "80075989-c7b7-4e53-b438-436901c02bce" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "80075989-c7b7-4e53-b438-436901c02bce" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 55.7152061, + "elementName" : "Stay (55.71521)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "901abaaf-b78a-483c-b444-bbc617069763" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "901abaaf-b78a-483c-b444-bbc617069763" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "901abaaf-b78a-483c-b444-bbc617069763" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "901abaaf-b78a-483c-b444-bbc617069763" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "518ce434-9921-40d1-88d3-c271d75689b1" + }, + "attachedElementGuid" : { + "value" : "901abaaf-b78a-483c-b444-bbc617069763" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "518ce434-9921-40d1-88d3-c271d75689b1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "518ce434-9921-40d1-88d3-c271d75689b1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "518ce434-9921-40d1-88d3-c271d75689b1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "518ce434-9921-40d1-88d3-c271d75689b1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Flick_BM,Assembly-CSharp", + "availableFlickDirections" : [ + + ], + "exactJudgeTime" : 55.77021, + "elementName" : "Flick (55.77021)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fbe9fa76-8afd-4d97-b97e-5fbd887d75a2" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fbe9fa76-8afd-4d97-b97e-5fbd887d75a2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "fbe9fa76-8afd-4d97-b97e-5fbd887d75a2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "fbe9fa76-8afd-4d97-b97e-5fbd887d75a2" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualFlick", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "67daf04c-c82c-4515-b277-e51ee2033982" + }, + "attachedElementGuid" : { + "value" : "fbe9fa76-8afd-4d97-b97e-5fbd887d75a2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1.7, + "y" : 1.7, + "z" : 1.7 + }, + "attachedElementGuid" : { + "value" : "67daf04c-c82c-4515-b277-e51ee2033982" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "67daf04c-c82c-4515-b277-e51ee2033982" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "67daf04c-c82c-4515-b277-e51ee2033982" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "67daf04c-c82c-4515-b277-e51ee2033982" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 56.4300575, + "elementName" : "Tap (56.43006)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "338f0f32-32d5-4b1e-acf1-c1ba7de09332" + }, + "attachedElementGuid" : { + "value" : "e77bbc70-fcdd-4212-9415-f60b37ee8281" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "338f0f32-32d5-4b1e-acf1-c1ba7de09332" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "338f0f32-32d5-4b1e-acf1-c1ba7de09332" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "338f0f32-32d5-4b1e-acf1-c1ba7de09332" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "614cf4b7-28ca-41da-9a1d-57dc4b8f119b" + }, + "attachedElementGuid" : { + "value" : "338f0f32-32d5-4b1e-acf1-c1ba7de09332" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "614cf4b7-28ca-41da-9a1d-57dc4b8f119b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "614cf4b7-28ca-41da-9a1d-57dc4b8f119b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "614cf4b7-28ca-41da-9a1d-57dc4b8f119b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "614cf4b7-28ca-41da-9a1d-57dc4b8f119b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 56.2650566, + "elementName" : "Tap (56.26506)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ed4922a7-c5e6-4eed-b351-ce78b00d7477" + }, + "attachedElementGuid" : { + "value" : "e77bbc70-fcdd-4212-9415-f60b37ee8281" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ed4922a7-c5e6-4eed-b351-ce78b00d7477" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "ed4922a7-c5e6-4eed-b351-ce78b00d7477" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "ed4922a7-c5e6-4eed-b351-ce78b00d7477" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5bd83491-0ce9-4cfc-9c6b-da96efd62f43" + }, + "attachedElementGuid" : { + "value" : "ed4922a7-c5e6-4eed-b351-ce78b00d7477" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5bd83491-0ce9-4cfc-9c6b-da96efd62f43" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5bd83491-0ce9-4cfc-9c6b-da96efd62f43" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5bd83491-0ce9-4cfc-9c6b-da96efd62f43" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "5bd83491-0ce9-4cfc-9c6b-da96efd62f43" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 56.59506, + "elementName" : "Tap (56.59506)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "51311afc-2c6e-4c08-8fbd-930f22bbac62" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "51311afc-2c6e-4c08-8fbd-930f22bbac62" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "51311afc-2c6e-4c08-8fbd-930f22bbac62" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "51311afc-2c6e-4c08-8fbd-930f22bbac62" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f0b1eac5-ba29-47af-856c-e753bec9ef56" + }, + "attachedElementGuid" : { + "value" : "51311afc-2c6e-4c08-8fbd-930f22bbac62" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f0b1eac5-ba29-47af-856c-e753bec9ef56" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f0b1eac5-ba29-47af-856c-e753bec9ef56" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f0b1eac5-ba29-47af-856c-e753bec9ef56" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "f0b1eac5-ba29-47af-856c-e753bec9ef56" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 56.76006, + "elementName" : "Tap (56.76006)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3e271d4a-6b03-46de-8992-5852140e9492" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3e271d4a-6b03-46de-8992-5852140e9492" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "3e271d4a-6b03-46de-8992-5852140e9492" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "3e271d4a-6b03-46de-8992-5852140e9492" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ab7149fa-cbc8-44e1-b0fe-8e280d221f7e" + }, + "attachedElementGuid" : { + "value" : "3e271d4a-6b03-46de-8992-5852140e9492" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ab7149fa-cbc8-44e1-b0fe-8e280d221f7e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ab7149fa-cbc8-44e1-b0fe-8e280d221f7e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ab7149fa-cbc8-44e1-b0fe-8e280d221f7e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "ab7149fa-cbc8-44e1-b0fe-8e280d221f7e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 56.84256, + "elementName" : "Tap (56.84256)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "32b04d94-db51-4606-9bfa-5debeaaf42fd" + }, + "attachedElementGuid" : { + "value" : "e77bbc70-fcdd-4212-9415-f60b37ee8281" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "32b04d94-db51-4606-9bfa-5debeaaf42fd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "32b04d94-db51-4606-9bfa-5debeaaf42fd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "32b04d94-db51-4606-9bfa-5debeaaf42fd" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "16037073-ea2c-4363-b654-2a49ae5df18a" + }, + "attachedElementGuid" : { + "value" : "32b04d94-db51-4606-9bfa-5debeaaf42fd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "16037073-ea2c-4363-b654-2a49ae5df18a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "16037073-ea2c-4363-b654-2a49ae5df18a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "16037073-ea2c-4363-b654-2a49ae5df18a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "16037073-ea2c-4363-b654-2a49ae5df18a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 56.92506, + "elementName" : "Tap (56.92506)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "29391b42-c003-4c13-a95e-a549c6608bb3" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "29391b42-c003-4c13-a95e-a549c6608bb3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "29391b42-c003-4c13-a95e-a549c6608bb3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "29391b42-c003-4c13-a95e-a549c6608bb3" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6354915a-a0be-46b0-92e0-100740ba1f33" + }, + "attachedElementGuid" : { + "value" : "29391b42-c003-4c13-a95e-a549c6608bb3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6354915a-a0be-46b0-92e0-100740ba1f33" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6354915a-a0be-46b0-92e0-100740ba1f33" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6354915a-a0be-46b0-92e0-100740ba1f33" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "6354915a-a0be-46b0-92e0-100740ba1f33" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 57.00756, + "elementName" : "Tap (57.00756)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "79c0281a-2632-405a-9eff-37a3d536fe0d" + }, + "attachedElementGuid" : { + "value" : "e77bbc70-fcdd-4212-9415-f60b37ee8281" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "79c0281a-2632-405a-9eff-37a3d536fe0d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "79c0281a-2632-405a-9eff-37a3d536fe0d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "79c0281a-2632-405a-9eff-37a3d536fe0d" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2bd2a8a2-017d-4627-acc1-b057856a4330" + }, + "attachedElementGuid" : { + "value" : "79c0281a-2632-405a-9eff-37a3d536fe0d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2bd2a8a2-017d-4627-acc1-b057856a4330" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2bd2a8a2-017d-4627-acc1-b057856a4330" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "2bd2a8a2-017d-4627-acc1-b057856a4330" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "2bd2a8a2-017d-4627-acc1-b057856a4330" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 57.0900574, + "elementName" : "Tap (57.09006)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "512775d8-7c2b-47d7-b7fa-7143a0346106" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "512775d8-7c2b-47d7-b7fa-7143a0346106" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "512775d8-7c2b-47d7-b7fa-7143a0346106" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "512775d8-7c2b-47d7-b7fa-7143a0346106" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "595d50e2-cc0a-43d4-bec3-78dc245c92aa" + }, + "attachedElementGuid" : { + "value" : "512775d8-7c2b-47d7-b7fa-7143a0346106" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "595d50e2-cc0a-43d4-bec3-78dc245c92aa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "595d50e2-cc0a-43d4-bec3-78dc245c92aa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "595d50e2-cc0a-43d4-bec3-78dc245c92aa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "595d50e2-cc0a-43d4-bec3-78dc245c92aa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 57.1725578, + "elementName" : "Tap (57.17256)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "790a1f0a-36a3-4242-968f-d42581ce166d" + }, + "attachedElementGuid" : { + "value" : "e77bbc70-fcdd-4212-9415-f60b37ee8281" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "790a1f0a-36a3-4242-968f-d42581ce166d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "790a1f0a-36a3-4242-968f-d42581ce166d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "790a1f0a-36a3-4242-968f-d42581ce166d" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "eedc8ddc-ea2b-48ce-b0f7-e6e206b66704" + }, + "attachedElementGuid" : { + "value" : "790a1f0a-36a3-4242-968f-d42581ce166d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "eedc8ddc-ea2b-48ce-b0f7-e6e206b66704" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "eedc8ddc-ea2b-48ce-b0f7-e6e206b66704" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "eedc8ddc-ea2b-48ce-b0f7-e6e206b66704" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "eedc8ddc-ea2b-48ce-b0f7-e6e206b66704" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 57.25506, + "elementName" : "Tap (57.25506)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f7ade64d-8c80-4903-9984-17fc26b9eec9" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f7ade64d-8c80-4903-9984-17fc26b9eec9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "f7ade64d-8c80-4903-9984-17fc26b9eec9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "f7ade64d-8c80-4903-9984-17fc26b9eec9" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "dd4e7464-53f7-4d43-ac89-7d34fed73a28" + }, + "attachedElementGuid" : { + "value" : "f7ade64d-8c80-4903-9984-17fc26b9eec9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "dd4e7464-53f7-4d43-ac89-7d34fed73a28" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "dd4e7464-53f7-4d43-ac89-7d34fed73a28" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "dd4e7464-53f7-4d43-ac89-7d34fed73a28" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "dd4e7464-53f7-4d43-ac89-7d34fed73a28" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 57.33756, + "elementName" : "Tap (57.33756)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cc2cee8a-f1e7-4350-b741-945e0593d9c1" + }, + "attachedElementGuid" : { + "value" : "e77bbc70-fcdd-4212-9415-f60b37ee8281" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "cc2cee8a-f1e7-4350-b741-945e0593d9c1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "cc2cee8a-f1e7-4350-b741-945e0593d9c1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "cc2cee8a-f1e7-4350-b741-945e0593d9c1" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "259c8da1-ece7-47df-928c-c802640a3a8b" + }, + "attachedElementGuid" : { + "value" : "cc2cee8a-f1e7-4350-b741-945e0593d9c1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "259c8da1-ece7-47df-928c-c802640a3a8b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "259c8da1-ece7-47df-928c-c802640a3a8b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "259c8da1-ece7-47df-928c-c802640a3a8b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "259c8da1-ece7-47df-928c-c802640a3a8b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 57.42006, + "elementName" : "Tap (57.42006)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bc43a6b3-aaea-46cc-8039-1caefca1d55a" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bc43a6b3-aaea-46cc-8039-1caefca1d55a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "bc43a6b3-aaea-46cc-8039-1caefca1d55a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "bc43a6b3-aaea-46cc-8039-1caefca1d55a" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ecefa9cc-b1ca-4bde-b09d-52a226bbaa0e" + }, + "attachedElementGuid" : { + "value" : "bc43a6b3-aaea-46cc-8039-1caefca1d55a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ecefa9cc-b1ca-4bde-b09d-52a226bbaa0e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ecefa9cc-b1ca-4bde-b09d-52a226bbaa0e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ecefa9cc-b1ca-4bde-b09d-52a226bbaa0e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "ecefa9cc-b1ca-4bde-b09d-52a226bbaa0e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 57.50256, + "elementName" : "Tap (57.50256)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4d1b3d29-35a9-4274-a830-5f574c8f631a" + }, + "attachedElementGuid" : { + "value" : "e77bbc70-fcdd-4212-9415-f60b37ee8281" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4d1b3d29-35a9-4274-a830-5f574c8f631a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "4d1b3d29-35a9-4274-a830-5f574c8f631a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "4d1b3d29-35a9-4274-a830-5f574c8f631a" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8bebe12e-5fe4-45a9-8839-612bb3791c68" + }, + "attachedElementGuid" : { + "value" : "4d1b3d29-35a9-4274-a830-5f574c8f631a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8bebe12e-5fe4-45a9-8839-612bb3791c68" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8bebe12e-5fe4-45a9-8839-612bb3791c68" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8bebe12e-5fe4-45a9-8839-612bb3791c68" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "8bebe12e-5fe4-45a9-8839-612bb3791c68" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 57.58506, + "elementName" : "Tap (57.58506)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d9122040-5993-4dab-81d4-b652f5d759dd" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d9122040-5993-4dab-81d4-b652f5d759dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "d9122040-5993-4dab-81d4-b652f5d759dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "d9122040-5993-4dab-81d4-b652f5d759dd" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6f0188bb-39a5-44f4-936f-0011302c32d3" + }, + "attachedElementGuid" : { + "value" : "d9122040-5993-4dab-81d4-b652f5d759dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6f0188bb-39a5-44f4-936f-0011302c32d3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6f0188bb-39a5-44f4-936f-0011302c32d3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6f0188bb-39a5-44f4-936f-0011302c32d3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "6f0188bb-39a5-44f4-936f-0011302c32d3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 57.66756, + "elementName" : "Tap (57.66756)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "019b52eb-4912-473d-86fe-c4fd03aa42b6" + }, + "attachedElementGuid" : { + "value" : "e77bbc70-fcdd-4212-9415-f60b37ee8281" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "019b52eb-4912-473d-86fe-c4fd03aa42b6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "019b52eb-4912-473d-86fe-c4fd03aa42b6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "019b52eb-4912-473d-86fe-c4fd03aa42b6" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5d118868-82ac-4f56-9842-04b6be7b5acf" + }, + "attachedElementGuid" : { + "value" : "019b52eb-4912-473d-86fe-c4fd03aa42b6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5d118868-82ac-4f56-9842-04b6be7b5acf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5d118868-82ac-4f56-9842-04b6be7b5acf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5d118868-82ac-4f56-9842-04b6be7b5acf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "5d118868-82ac-4f56-9842-04b6be7b5acf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 57.75006, + "elementName" : "Tap (57.75006)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "53db1900-7494-48a6-8557-be2acc32f5c2" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "53db1900-7494-48a6-8557-be2acc32f5c2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "53db1900-7494-48a6-8557-be2acc32f5c2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "53db1900-7494-48a6-8557-be2acc32f5c2" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "02a03dae-c126-4811-b405-721ca8adc134" + }, + "attachedElementGuid" : { + "value" : "53db1900-7494-48a6-8557-be2acc32f5c2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "02a03dae-c126-4811-b405-721ca8adc134" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "02a03dae-c126-4811-b405-721ca8adc134" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "02a03dae-c126-4811-b405-721ca8adc134" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "02a03dae-c126-4811-b405-721ca8adc134" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 58.24506, + "elementName" : "Tap (58.24506)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "df0c037c-250a-4d96-86e6-c944495e2411" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "df0c037c-250a-4d96-86e6-c944495e2411" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "df0c037c-250a-4d96-86e6-c944495e2411" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "df0c037c-250a-4d96-86e6-c944495e2411" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "868d15bc-655c-48a1-85d7-5574b1c68692" + }, + "attachedElementGuid" : { + "value" : "df0c037c-250a-4d96-86e6-c944495e2411" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "868d15bc-655c-48a1-85d7-5574b1c68692" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "868d15bc-655c-48a1-85d7-5574b1c68692" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "868d15bc-655c-48a1-85d7-5574b1c68692" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "868d15bc-655c-48a1-85d7-5574b1c68692" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 58.41006, + "elementName" : "Tap (58.41006)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0b32b279-a388-4045-8846-54fa9c3a6fe0" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0b32b279-a388-4045-8846-54fa9c3a6fe0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "0b32b279-a388-4045-8846-54fa9c3a6fe0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "0b32b279-a388-4045-8846-54fa9c3a6fe0" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a98f72c0-727e-4cd1-99c5-029b780152ff" + }, + "attachedElementGuid" : { + "value" : "0b32b279-a388-4045-8846-54fa9c3a6fe0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a98f72c0-727e-4cd1-99c5-029b780152ff" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a98f72c0-727e-4cd1-99c5-029b780152ff" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a98f72c0-727e-4cd1-99c5-029b780152ff" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "a98f72c0-727e-4cd1-99c5-029b780152ff" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 58.57506, + "elementName" : "Tap (58.57506)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b404357c-8803-4343-89c3-e744fa4319fa" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b404357c-8803-4343-89c3-e744fa4319fa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "b404357c-8803-4343-89c3-e744fa4319fa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "b404357c-8803-4343-89c3-e744fa4319fa" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "aeb5e0f1-7dc0-4c98-8aba-c3f65bd4ee4c" + }, + "attachedElementGuid" : { + "value" : "b404357c-8803-4343-89c3-e744fa4319fa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "aeb5e0f1-7dc0-4c98-8aba-c3f65bd4ee4c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "aeb5e0f1-7dc0-4c98-8aba-c3f65bd4ee4c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "aeb5e0f1-7dc0-4c98-8aba-c3f65bd4ee4c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "aeb5e0f1-7dc0-4c98-8aba-c3f65bd4ee4c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Flick_BM,Assembly-CSharp", + "availableFlickDirections" : [ + + ], + "exactJudgeTime" : 58.74, + "elementName" : "Flick (58.74)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "57b1a130-5647-463a-9f2d-227275a7c7cd" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "57b1a130-5647-463a-9f2d-227275a7c7cd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "57b1a130-5647-463a-9f2d-227275a7c7cd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "57b1a130-5647-463a-9f2d-227275a7c7cd" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualFlick", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a2fbadd1-effb-4089-bf8b-b2e85ec2bc6c" + }, + "attachedElementGuid" : { + "value" : "57b1a130-5647-463a-9f2d-227275a7c7cd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1.7, + "y" : 1.7, + "z" : 1.7 + }, + "attachedElementGuid" : { + "value" : "a2fbadd1-effb-4089-bf8b-b2e85ec2bc6c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a2fbadd1-effb-4089-bf8b-b2e85ec2bc6c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a2fbadd1-effb-4089-bf8b-b2e85ec2bc6c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "a2fbadd1-effb-4089-bf8b-b2e85ec2bc6c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 58.74, + "elementName" : "Tap (58.74)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3895840e-880a-4abf-812f-1deafc27d877" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3895840e-880a-4abf-812f-1deafc27d877" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "3895840e-880a-4abf-812f-1deafc27d877" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "3895840e-880a-4abf-812f-1deafc27d877" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "dfb0dcd7-2215-42c0-a453-0076111d243c" + }, + "attachedElementGuid" : { + "value" : "3895840e-880a-4abf-812f-1deafc27d877" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "dfb0dcd7-2215-42c0-a453-0076111d243c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "dfb0dcd7-2215-42c0-a453-0076111d243c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "dfb0dcd7-2215-42c0-a453-0076111d243c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "dfb0dcd7-2215-42c0-a453-0076111d243c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 58.90506, + "elementName" : "Tap (58.90506)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "089f86ae-7056-4125-9e1c-718e383c9753" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "089f86ae-7056-4125-9e1c-718e383c9753" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "089f86ae-7056-4125-9e1c-718e383c9753" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "089f86ae-7056-4125-9e1c-718e383c9753" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f62463cd-c2b7-48c1-acc4-2d110bda6608" + }, + "attachedElementGuid" : { + "value" : "089f86ae-7056-4125-9e1c-718e383c9753" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f62463cd-c2b7-48c1-acc4-2d110bda6608" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f62463cd-c2b7-48c1-acc4-2d110bda6608" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f62463cd-c2b7-48c1-acc4-2d110bda6608" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "f62463cd-c2b7-48c1-acc4-2d110bda6608" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 59.07006, + "elementName" : "Tap (59.07006)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "223bc354-8c01-425b-934b-94c5cd4bfaa2" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "223bc354-8c01-425b-934b-94c5cd4bfaa2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "223bc354-8c01-425b-934b-94c5cd4bfaa2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "223bc354-8c01-425b-934b-94c5cd4bfaa2" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7068696b-99f1-48c6-ad33-677181a4a6b9" + }, + "attachedElementGuid" : { + "value" : "223bc354-8c01-425b-934b-94c5cd4bfaa2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7068696b-99f1-48c6-ad33-677181a4a6b9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7068696b-99f1-48c6-ad33-677181a4a6b9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "7068696b-99f1-48c6-ad33-677181a4a6b9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "7068696b-99f1-48c6-ad33-677181a4a6b9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 59.23506, + "elementName" : "Tap (59.23506)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ab9577c1-d97c-45d5-a43b-ac573995fd83" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ab9577c1-d97c-45d5-a43b-ac573995fd83" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "ab9577c1-d97c-45d5-a43b-ac573995fd83" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "ab9577c1-d97c-45d5-a43b-ac573995fd83" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "26f1ad6b-233f-4e95-a59e-af26dc8b9a51" + }, + "attachedElementGuid" : { + "value" : "ab9577c1-d97c-45d5-a43b-ac573995fd83" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "26f1ad6b-233f-4e95-a59e-af26dc8b9a51" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "26f1ad6b-233f-4e95-a59e-af26dc8b9a51" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "26f1ad6b-233f-4e95-a59e-af26dc8b9a51" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "26f1ad6b-233f-4e95-a59e-af26dc8b9a51" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 59.4000626, + "elementName" : "Tap (59.40006)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6c64b1d4-914f-4b25-a7eb-97f05121d41f" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6c64b1d4-914f-4b25-a7eb-97f05121d41f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "6c64b1d4-914f-4b25-a7eb-97f05121d41f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "6c64b1d4-914f-4b25-a7eb-97f05121d41f" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "333396a9-0f93-4795-9e55-1cabfe3db386" + }, + "attachedElementGuid" : { + "value" : "6c64b1d4-914f-4b25-a7eb-97f05121d41f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "333396a9-0f93-4795-9e55-1cabfe3db386" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "333396a9-0f93-4795-9e55-1cabfe3db386" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "333396a9-0f93-4795-9e55-1cabfe3db386" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "333396a9-0f93-4795-9e55-1cabfe3db386" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 59.56506, + "elementName" : "Tap (59.56506)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ca789ae5-1bb9-46be-bdbf-477175e43425" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ca789ae5-1bb9-46be-bdbf-477175e43425" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "ca789ae5-1bb9-46be-bdbf-477175e43425" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "ca789ae5-1bb9-46be-bdbf-477175e43425" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "154e5416-9791-4add-aba1-762e1438fe19" + }, + "attachedElementGuid" : { + "value" : "ca789ae5-1bb9-46be-bdbf-477175e43425" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "154e5416-9791-4add-aba1-762e1438fe19" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "154e5416-9791-4add-aba1-762e1438fe19" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "154e5416-9791-4add-aba1-762e1438fe19" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "154e5416-9791-4add-aba1-762e1438fe19" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 59.73006, + "elementName" : "Tap (59.73006)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "76f55a67-6bee-445a-82a1-a0048aa0f7e2" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "76f55a67-6bee-445a-82a1-a0048aa0f7e2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "76f55a67-6bee-445a-82a1-a0048aa0f7e2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "76f55a67-6bee-445a-82a1-a0048aa0f7e2" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e63b32aa-8581-4a5f-856c-a22d1ba90edd" + }, + "attachedElementGuid" : { + "value" : "76f55a67-6bee-445a-82a1-a0048aa0f7e2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e63b32aa-8581-4a5f-856c-a22d1ba90edd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e63b32aa-8581-4a5f-856c-a22d1ba90edd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e63b32aa-8581-4a5f-856c-a22d1ba90edd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "e63b32aa-8581-4a5f-856c-a22d1ba90edd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 59.89506, + "elementName" : "Tap (59.89506)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cb182ad5-afbc-4ab4-9466-ad83123db618" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "cb182ad5-afbc-4ab4-9466-ad83123db618" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "cb182ad5-afbc-4ab4-9466-ad83123db618" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "cb182ad5-afbc-4ab4-9466-ad83123db618" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8e1cbb12-1870-4579-adfe-812fb8d88d92" + }, + "attachedElementGuid" : { + "value" : "cb182ad5-afbc-4ab4-9466-ad83123db618" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8e1cbb12-1870-4579-adfe-812fb8d88d92" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8e1cbb12-1870-4579-adfe-812fb8d88d92" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8e1cbb12-1870-4579-adfe-812fb8d88d92" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "8e1cbb12-1870-4579-adfe-812fb8d88d92" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 60.0600624, + "elementName" : "Tap (60.06006)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "aeb0264c-f118-4c6e-8c81-814855e22373" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "aeb0264c-f118-4c6e-8c81-814855e22373" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "aeb0264c-f118-4c6e-8c81-814855e22373" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "aeb0264c-f118-4c6e-8c81-814855e22373" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "52a03acd-017c-41f3-84c8-8c990ee5f14e" + }, + "attachedElementGuid" : { + "value" : "aeb0264c-f118-4c6e-8c81-814855e22373" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "52a03acd-017c-41f3-84c8-8c990ee5f14e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "52a03acd-017c-41f3-84c8-8c990ee5f14e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "52a03acd-017c-41f3-84c8-8c990ee5f14e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "52a03acd-017c-41f3-84c8-8c990ee5f14e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 60.2250633, + "elementName" : "Tap (60.22506)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c4080d68-e4b4-4309-9eea-68b6feee5f04" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c4080d68-e4b4-4309-9eea-68b6feee5f04" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "c4080d68-e4b4-4309-9eea-68b6feee5f04" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "c4080d68-e4b4-4309-9eea-68b6feee5f04" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cf647372-2fb1-4d3d-ae87-a43cb32a73d0" + }, + "attachedElementGuid" : { + "value" : "c4080d68-e4b4-4309-9eea-68b6feee5f04" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "cf647372-2fb1-4d3d-ae87-a43cb32a73d0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "cf647372-2fb1-4d3d-ae87-a43cb32a73d0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "cf647372-2fb1-4d3d-ae87-a43cb32a73d0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "cf647372-2fb1-4d3d-ae87-a43cb32a73d0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 60.3900642, + "elementName" : "Tap (60.39006)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "254fbf9a-9c1d-4a03-a7d2-3f4c75a0b9a9" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "254fbf9a-9c1d-4a03-a7d2-3f4c75a0b9a9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "254fbf9a-9c1d-4a03-a7d2-3f4c75a0b9a9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "254fbf9a-9c1d-4a03-a7d2-3f4c75a0b9a9" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "704739f6-fe71-426d-b48a-036c0672755d" + }, + "attachedElementGuid" : { + "value" : "254fbf9a-9c1d-4a03-a7d2-3f4c75a0b9a9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "704739f6-fe71-426d-b48a-036c0672755d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "704739f6-fe71-426d-b48a-036c0672755d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "704739f6-fe71-426d-b48a-036c0672755d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "704739f6-fe71-426d-b48a-036c0672755d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 60.3900642, + "elementName" : "Tap (60.39006)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c2fa82ee-f493-4c5d-9e3f-0de92e25ae91" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c2fa82ee-f493-4c5d-9e3f-0de92e25ae91" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "c2fa82ee-f493-4c5d-9e3f-0de92e25ae91" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "c2fa82ee-f493-4c5d-9e3f-0de92e25ae91" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "28e2f9d1-ef80-44e8-9442-31622cfdb131" + }, + "attachedElementGuid" : { + "value" : "c2fa82ee-f493-4c5d-9e3f-0de92e25ae91" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "28e2f9d1-ef80-44e8-9442-31622cfdb131" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "28e2f9d1-ef80-44e8-9442-31622cfdb131" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "28e2f9d1-ef80-44e8-9442-31622cfdb131" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "28e2f9d1-ef80-44e8-9442-31622cfdb131" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 60.55506, + "elementName" : "Tap (60.55506)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e3c9b732-63ea-41d4-a652-454e569558f2" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e3c9b732-63ea-41d4-a652-454e569558f2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "e3c9b732-63ea-41d4-a652-454e569558f2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "e3c9b732-63ea-41d4-a652-454e569558f2" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "54ff2c9a-0393-41c4-ad1f-f31e9b884311" + }, + "attachedElementGuid" : { + "value" : "e3c9b732-63ea-41d4-a652-454e569558f2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "54ff2c9a-0393-41c4-ad1f-f31e9b884311" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "54ff2c9a-0393-41c4-ad1f-f31e9b884311" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "54ff2c9a-0393-41c4-ad1f-f31e9b884311" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "54ff2c9a-0393-41c4-ad1f-f31e9b884311" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 60.610363, + "elementName" : "Stay (60.61036)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b2af9323-f31f-4b09-a285-211a49b13804" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b2af9323-f31f-4b09-a285-211a49b13804" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "b2af9323-f31f-4b09-a285-211a49b13804" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "b2af9323-f31f-4b09-a285-211a49b13804" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "aab5cb26-fb86-497f-b1cc-60f7141a611b" + }, + "attachedElementGuid" : { + "value" : "b2af9323-f31f-4b09-a285-211a49b13804" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "aab5cb26-fb86-497f-b1cc-60f7141a611b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "aab5cb26-fb86-497f-b1cc-60f7141a611b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "aab5cb26-fb86-497f-b1cc-60f7141a611b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "aab5cb26-fb86-497f-b1cc-60f7141a611b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 60.6653633, + "elementName" : "Stay (60.66536)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1ec5fb49-d443-4fee-b9ef-bbef5f94c19a" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1ec5fb49-d443-4fee-b9ef-bbef5f94c19a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "1ec5fb49-d443-4fee-b9ef-bbef5f94c19a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "1ec5fb49-d443-4fee-b9ef-bbef5f94c19a" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4d06de15-4143-4448-9c9c-e04d129c301a" + }, + "attachedElementGuid" : { + "value" : "1ec5fb49-d443-4fee-b9ef-bbef5f94c19a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4d06de15-4143-4448-9c9c-e04d129c301a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4d06de15-4143-4448-9c9c-e04d129c301a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4d06de15-4143-4448-9c9c-e04d129c301a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "4d06de15-4143-4448-9c9c-e04d129c301a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Flick_BM,Assembly-CSharp", + "availableFlickDirections" : [ + + ], + "exactJudgeTime" : 60.72, + "elementName" : "Flick (60.72)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3cd54f36-f8d0-46ec-8893-34acb5af25e8" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3cd54f36-f8d0-46ec-8893-34acb5af25e8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "3cd54f36-f8d0-46ec-8893-34acb5af25e8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "3cd54f36-f8d0-46ec-8893-34acb5af25e8" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualFlick", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5c3a6d49-eec5-4014-bd30-d1a7ec606048" + }, + "attachedElementGuid" : { + "value" : "3cd54f36-f8d0-46ec-8893-34acb5af25e8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1.7, + "y" : 1.7, + "z" : 1.7 + }, + "attachedElementGuid" : { + "value" : "5c3a6d49-eec5-4014-bd30-d1a7ec606048" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5c3a6d49-eec5-4014-bd30-d1a7ec606048" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5c3a6d49-eec5-4014-bd30-d1a7ec606048" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "5c3a6d49-eec5-4014-bd30-d1a7ec606048" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 60.72, + "elementName" : "Tap (60.72)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "da99cd38-f30e-43ab-96e5-ff6153fa446b" + }, + "attachedElementGuid" : { + "value" : "e77bbc70-fcdd-4212-9415-f60b37ee8281" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "da99cd38-f30e-43ab-96e5-ff6153fa446b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "da99cd38-f30e-43ab-96e5-ff6153fa446b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "da99cd38-f30e-43ab-96e5-ff6153fa446b" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "63bfc264-bfc2-4545-89c7-28adee1bf18d" + }, + "attachedElementGuid" : { + "value" : "da99cd38-f30e-43ab-96e5-ff6153fa446b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "63bfc264-bfc2-4545-89c7-28adee1bf18d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "63bfc264-bfc2-4545-89c7-28adee1bf18d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "63bfc264-bfc2-4545-89c7-28adee1bf18d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "63bfc264-bfc2-4545-89c7-28adee1bf18d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 60.8850632, + "elementName" : "Tap (60.88506)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "921b3fed-c69d-4e40-93c9-833f1f31eb02" + }, + "attachedElementGuid" : { + "value" : "e77bbc70-fcdd-4212-9415-f60b37ee8281" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "921b3fed-c69d-4e40-93c9-833f1f31eb02" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "921b3fed-c69d-4e40-93c9-833f1f31eb02" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "921b3fed-c69d-4e40-93c9-833f1f31eb02" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "32d4f389-8d79-4def-8e26-09d1f583bbdf" + }, + "attachedElementGuid" : { + "value" : "921b3fed-c69d-4e40-93c9-833f1f31eb02" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "32d4f389-8d79-4def-8e26-09d1f583bbdf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "32d4f389-8d79-4def-8e26-09d1f583bbdf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "32d4f389-8d79-4def-8e26-09d1f583bbdf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "32d4f389-8d79-4def-8e26-09d1f583bbdf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 61.0500641, + "elementName" : "Tap (61.05006)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c2049bd2-9580-4749-aab5-4698fe0ed7b9" + }, + "attachedElementGuid" : { + "value" : "e77bbc70-fcdd-4212-9415-f60b37ee8281" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c2049bd2-9580-4749-aab5-4698fe0ed7b9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "c2049bd2-9580-4749-aab5-4698fe0ed7b9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "c2049bd2-9580-4749-aab5-4698fe0ed7b9" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8c6884b7-cf4e-457c-8a1a-4031d4f067d1" + }, + "attachedElementGuid" : { + "value" : "c2049bd2-9580-4749-aab5-4698fe0ed7b9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8c6884b7-cf4e-457c-8a1a-4031d4f067d1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8c6884b7-cf4e-457c-8a1a-4031d4f067d1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8c6884b7-cf4e-457c-8a1a-4031d4f067d1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "8c6884b7-cf4e-457c-8a1a-4031d4f067d1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 61.215065, + "elementName" : "Tap (61.21507)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "eb6d16a3-41a4-457d-a8e2-c307447a9e20" + }, + "attachedElementGuid" : { + "value" : "e77bbc70-fcdd-4212-9415-f60b37ee8281" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "eb6d16a3-41a4-457d-a8e2-c307447a9e20" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "eb6d16a3-41a4-457d-a8e2-c307447a9e20" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "eb6d16a3-41a4-457d-a8e2-c307447a9e20" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "43096fab-9be3-414c-9a03-ea6fa32ce11a" + }, + "attachedElementGuid" : { + "value" : "eb6d16a3-41a4-457d-a8e2-c307447a9e20" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "43096fab-9be3-414c-9a03-ea6fa32ce11a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "43096fab-9be3-414c-9a03-ea6fa32ce11a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "43096fab-9be3-414c-9a03-ea6fa32ce11a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "43096fab-9be3-414c-9a03-ea6fa32ce11a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 61.38, + "elementName" : "Tap (61.38)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fc88a2fa-6fe6-4ce3-b99b-52987c843d0e" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fc88a2fa-6fe6-4ce3-b99b-52987c843d0e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "fc88a2fa-6fe6-4ce3-b99b-52987c843d0e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "fc88a2fa-6fe6-4ce3-b99b-52987c843d0e" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d5382592-ade4-42f9-a560-b1b3cf3ab268" + }, + "attachedElementGuid" : { + "value" : "fc88a2fa-6fe6-4ce3-b99b-52987c843d0e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d5382592-ade4-42f9-a560-b1b3cf3ab268" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d5382592-ade4-42f9-a560-b1b3cf3ab268" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d5382592-ade4-42f9-a560-b1b3cf3ab268" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d5382592-ade4-42f9-a560-b1b3cf3ab268" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 61.545063, + "elementName" : "Tap (61.54506)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "dce424e3-dba4-418c-83db-53126dd0c3de" + }, + "attachedElementGuid" : { + "value" : "e77bbc70-fcdd-4212-9415-f60b37ee8281" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "dce424e3-dba4-418c-83db-53126dd0c3de" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "dce424e3-dba4-418c-83db-53126dd0c3de" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "dce424e3-dba4-418c-83db-53126dd0c3de" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ec0fcee9-b2f1-40db-b1d9-595ee82f3fbf" + }, + "attachedElementGuid" : { + "value" : "dce424e3-dba4-418c-83db-53126dd0c3de" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ec0fcee9-b2f1-40db-b1d9-595ee82f3fbf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ec0fcee9-b2f1-40db-b1d9-595ee82f3fbf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ec0fcee9-b2f1-40db-b1d9-595ee82f3fbf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "ec0fcee9-b2f1-40db-b1d9-595ee82f3fbf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Hold_BM,Assembly-CSharp", + "holdEndTime" : 62.2100639, + "exactJudgeTime" : 61.7100639, + "elementName" : "Hold (61.71006-62.21006)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "75873466-a0df-4436-9b16-04d547357fca" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "75873466-a0df-4436-9b16-04d547357fca" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "75873466-a0df-4436-9b16-04d547357fca" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "75873466-a0df-4436-9b16-04d547357fca" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisualHold_BM,Assembly-CSharp", + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualHold", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6e2133e2-8a88-4e48-9241-772843fa1528" + }, + "attachedElementGuid" : { + "value" : "75873466-a0df-4436-9b16-04d547357fca" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6e2133e2-8a88-4e48-9241-772843fa1528" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6e2133e2-8a88-4e48-9241-772843fa1528" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6e2133e2-8a88-4e48-9241-772843fa1528" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExtend_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.5 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteHoldingBreath_BM,Assembly-CSharp", + "effectTime" : 0.5 + } + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "6e2133e2-8a88-4e48-9241-772843fa1528" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 61.7100639, + "elementName" : "Tap (61.71006)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9b7cb3d2-ad39-4186-8c60-45e927019557" + }, + "attachedElementGuid" : { + "value" : "e77bbc70-fcdd-4212-9415-f60b37ee8281" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9b7cb3d2-ad39-4186-8c60-45e927019557" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "9b7cb3d2-ad39-4186-8c60-45e927019557" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "9b7cb3d2-ad39-4186-8c60-45e927019557" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7e167fd5-29fd-49c5-a84b-e2a9d2ec34f7" + }, + "attachedElementGuid" : { + "value" : "9b7cb3d2-ad39-4186-8c60-45e927019557" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7e167fd5-29fd-49c5-a84b-e2a9d2ec34f7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7e167fd5-29fd-49c5-a84b-e2a9d2ec34f7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "7e167fd5-29fd-49c5-a84b-e2a9d2ec34f7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "7e167fd5-29fd-49c5-a84b-e2a9d2ec34f7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 62.7000656, + "elementName" : "Tap (62.70007)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c159333b-fa06-403b-8efc-da59ccd51c85" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c159333b-fa06-403b-8efc-da59ccd51c85" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "c159333b-fa06-403b-8efc-da59ccd51c85" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "c159333b-fa06-403b-8efc-da59ccd51c85" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "19623e93-9027-4f81-b098-c0272ac77be8" + }, + "attachedElementGuid" : { + "value" : "c159333b-fa06-403b-8efc-da59ccd51c85" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "19623e93-9027-4f81-b098-c0272ac77be8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "19623e93-9027-4f81-b098-c0272ac77be8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "19623e93-9027-4f81-b098-c0272ac77be8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "19623e93-9027-4f81-b098-c0272ac77be8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 62.75543, + "elementName" : "Stay (62.75543)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e72771a0-4b03-4ca4-8bfd-cc48c76616a0" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e72771a0-4b03-4ca4-8bfd-cc48c76616a0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "e72771a0-4b03-4ca4-8bfd-cc48c76616a0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "e72771a0-4b03-4ca4-8bfd-cc48c76616a0" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8b924e0a-d0cc-4c99-813d-20e9a7b56bfe" + }, + "attachedElementGuid" : { + "value" : "e72771a0-4b03-4ca4-8bfd-cc48c76616a0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8b924e0a-d0cc-4c99-813d-20e9a7b56bfe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8b924e0a-d0cc-4c99-813d-20e9a7b56bfe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8b924e0a-d0cc-4c99-813d-20e9a7b56bfe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "8b924e0a-d0cc-4c99-813d-20e9a7b56bfe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 62.8104324, + "elementName" : "Stay (62.81043)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "05b463f5-2635-4a54-a53d-7fbbc0261f15" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "05b463f5-2635-4a54-a53d-7fbbc0261f15" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "05b463f5-2635-4a54-a53d-7fbbc0261f15" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "05b463f5-2635-4a54-a53d-7fbbc0261f15" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f92d6424-8f0b-4ab2-8153-7cae7bb3827d" + }, + "attachedElementGuid" : { + "value" : "05b463f5-2635-4a54-a53d-7fbbc0261f15" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f92d6424-8f0b-4ab2-8153-7cae7bb3827d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f92d6424-8f0b-4ab2-8153-7cae7bb3827d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f92d6424-8f0b-4ab2-8153-7cae7bb3827d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "f92d6424-8f0b-4ab2-8153-7cae7bb3827d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 62.8654327, + "elementName" : "Stay (62.86543)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "85c6c735-ea5e-4fbf-82bf-12b6d551d69e" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "85c6c735-ea5e-4fbf-82bf-12b6d551d69e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "85c6c735-ea5e-4fbf-82bf-12b6d551d69e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "85c6c735-ea5e-4fbf-82bf-12b6d551d69e" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7fd1854f-ee28-4e42-8c06-c51d685c5eae" + }, + "attachedElementGuid" : { + "value" : "85c6c735-ea5e-4fbf-82bf-12b6d551d69e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7fd1854f-ee28-4e42-8c06-c51d685c5eae" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7fd1854f-ee28-4e42-8c06-c51d685c5eae" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "7fd1854f-ee28-4e42-8c06-c51d685c5eae" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "7fd1854f-ee28-4e42-8c06-c51d685c5eae" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 62.920433, + "elementName" : "Stay (62.92043)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "98e038d5-e9fd-4633-9a0c-e415179505e3" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "98e038d5-e9fd-4633-9a0c-e415179505e3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "98e038d5-e9fd-4633-9a0c-e415179505e3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "98e038d5-e9fd-4633-9a0c-e415179505e3" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2a7ed4b6-6542-45b1-a29f-e10ce2d93fca" + }, + "attachedElementGuid" : { + "value" : "98e038d5-e9fd-4633-9a0c-e415179505e3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2a7ed4b6-6542-45b1-a29f-e10ce2d93fca" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2a7ed4b6-6542-45b1-a29f-e10ce2d93fca" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "2a7ed4b6-6542-45b1-a29f-e10ce2d93fca" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "2a7ed4b6-6542-45b1-a29f-e10ce2d93fca" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 62.9754372, + "elementName" : "Stay (62.97544)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "331279b5-2a99-4574-9059-cbffc98fee26" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "331279b5-2a99-4574-9059-cbffc98fee26" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "331279b5-2a99-4574-9059-cbffc98fee26" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "331279b5-2a99-4574-9059-cbffc98fee26" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "adfc9eaa-417e-4b53-a5bb-3ee09e0f9a01" + }, + "attachedElementGuid" : { + "value" : "331279b5-2a99-4574-9059-cbffc98fee26" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "adfc9eaa-417e-4b53-a5bb-3ee09e0f9a01" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "adfc9eaa-417e-4b53-a5bb-3ee09e0f9a01" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "adfc9eaa-417e-4b53-a5bb-3ee09e0f9a01" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "adfc9eaa-417e-4b53-a5bb-3ee09e0f9a01" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 63.0304375, + "elementName" : "Stay (63.03044)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ce983fd1-59dd-47b2-acce-b7bbb5313515" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ce983fd1-59dd-47b2-acce-b7bbb5313515" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "ce983fd1-59dd-47b2-acce-b7bbb5313515" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "ce983fd1-59dd-47b2-acce-b7bbb5313515" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "85114f49-cd2d-4e9e-8e1a-4a64d8d9d514" + }, + "attachedElementGuid" : { + "value" : "ce983fd1-59dd-47b2-acce-b7bbb5313515" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "85114f49-cd2d-4e9e-8e1a-4a64d8d9d514" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "85114f49-cd2d-4e9e-8e1a-4a64d8d9d514" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "85114f49-cd2d-4e9e-8e1a-4a64d8d9d514" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "85114f49-cd2d-4e9e-8e1a-4a64d8d9d514" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 63.0298729, + "elementName" : "Tap (63.02987)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8bf75475-73d2-4e5e-85de-8772f3fd343d" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8bf75475-73d2-4e5e-85de-8772f3fd343d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "8bf75475-73d2-4e5e-85de-8772f3fd343d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "8bf75475-73d2-4e5e-85de-8772f3fd343d" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d7568505-2212-43a5-a9d0-b77a47c01c72" + }, + "attachedElementGuid" : { + "value" : "8bf75475-73d2-4e5e-85de-8772f3fd343d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d7568505-2212-43a5-a9d0-b77a47c01c72" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d7568505-2212-43a5-a9d0-b77a47c01c72" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d7568505-2212-43a5-a9d0-b77a47c01c72" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d7568505-2212-43a5-a9d0-b77a47c01c72" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 63.8550644, + "elementName" : "Tap (63.85506)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d882a7a7-563c-4ff0-911a-553eeb8b4d1f" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d882a7a7-563c-4ff0-911a-553eeb8b4d1f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "d882a7a7-563c-4ff0-911a-553eeb8b4d1f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "d882a7a7-563c-4ff0-911a-553eeb8b4d1f" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "65482b56-b9b8-4564-b754-e90c70ac954c" + }, + "attachedElementGuid" : { + "value" : "d882a7a7-563c-4ff0-911a-553eeb8b4d1f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "65482b56-b9b8-4564-b754-e90c70ac954c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "65482b56-b9b8-4564-b754-e90c70ac954c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "65482b56-b9b8-4564-b754-e90c70ac954c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "65482b56-b9b8-4564-b754-e90c70ac954c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 64.0200653, + "elementName" : "Tap (64.02007)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "634ceb9e-1818-40b7-9393-cec5c231e5e1" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "634ceb9e-1818-40b7-9393-cec5c231e5e1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "634ceb9e-1818-40b7-9393-cec5c231e5e1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "634ceb9e-1818-40b7-9393-cec5c231e5e1" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a4be4c9f-27ac-49fd-88d6-0768d59e9360" + }, + "attachedElementGuid" : { + "value" : "634ceb9e-1818-40b7-9393-cec5c231e5e1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a4be4c9f-27ac-49fd-88d6-0768d59e9360" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a4be4c9f-27ac-49fd-88d6-0768d59e9360" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a4be4c9f-27ac-49fd-88d6-0768d59e9360" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "a4be4c9f-27ac-49fd-88d6-0768d59e9360" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 63.3604469, + "elementName" : "Tap (63.36045)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6fb1787c-7dcc-4396-b2fb-5e4a9bda4d49" + }, + "attachedElementGuid" : { + "value" : "e77bbc70-fcdd-4212-9415-f60b37ee8281" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6fb1787c-7dcc-4396-b2fb-5e4a9bda4d49" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "6fb1787c-7dcc-4396-b2fb-5e4a9bda4d49" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "6fb1787c-7dcc-4396-b2fb-5e4a9bda4d49" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4f1df162-6ff6-46a2-895d-90f1196255e4" + }, + "attachedElementGuid" : { + "value" : "6fb1787c-7dcc-4396-b2fb-5e4a9bda4d49" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4f1df162-6ff6-46a2-895d-90f1196255e4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4f1df162-6ff6-46a2-895d-90f1196255e4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4f1df162-6ff6-46a2-895d-90f1196255e4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "4f1df162-6ff6-46a2-895d-90f1196255e4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 63.41545, + "elementName" : "Stay (63.41545)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a42a6f9e-e72c-4f2e-ada6-ff39cceffe59" + }, + "attachedElementGuid" : { + "value" : "e77bbc70-fcdd-4212-9415-f60b37ee8281" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a42a6f9e-e72c-4f2e-ada6-ff39cceffe59" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "a42a6f9e-e72c-4f2e-ada6-ff39cceffe59" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "a42a6f9e-e72c-4f2e-ada6-ff39cceffe59" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6f47c3e5-f36d-439a-ba53-f5985513a422" + }, + "attachedElementGuid" : { + "value" : "a42a6f9e-e72c-4f2e-ada6-ff39cceffe59" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6f47c3e5-f36d-439a-ba53-f5985513a422" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6f47c3e5-f36d-439a-ba53-f5985513a422" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6f47c3e5-f36d-439a-ba53-f5985513a422" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "6f47c3e5-f36d-439a-ba53-f5985513a422" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 63.47045, + "elementName" : "Stay (63.47045)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8d0023ab-437f-4bf6-bac6-d93578eca221" + }, + "attachedElementGuid" : { + "value" : "e77bbc70-fcdd-4212-9415-f60b37ee8281" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8d0023ab-437f-4bf6-bac6-d93578eca221" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "8d0023ab-437f-4bf6-bac6-d93578eca221" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "8d0023ab-437f-4bf6-bac6-d93578eca221" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "36af2a51-2683-409b-9da0-150577f8112f" + }, + "attachedElementGuid" : { + "value" : "8d0023ab-437f-4bf6-bac6-d93578eca221" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "36af2a51-2683-409b-9da0-150577f8112f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "36af2a51-2683-409b-9da0-150577f8112f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "36af2a51-2683-409b-9da0-150577f8112f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "36af2a51-2683-409b-9da0-150577f8112f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 63.52545, + "elementName" : "Stay (63.52545)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "47a3ad6a-3f09-4c77-9203-5385618ca124" + }, + "attachedElementGuid" : { + "value" : "e77bbc70-fcdd-4212-9415-f60b37ee8281" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "47a3ad6a-3f09-4c77-9203-5385618ca124" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "47a3ad6a-3f09-4c77-9203-5385618ca124" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "47a3ad6a-3f09-4c77-9203-5385618ca124" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5f87af3c-461a-455a-b785-c6122f6c6df6" + }, + "attachedElementGuid" : { + "value" : "47a3ad6a-3f09-4c77-9203-5385618ca124" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5f87af3c-461a-455a-b785-c6122f6c6df6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5f87af3c-461a-455a-b785-c6122f6c6df6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5f87af3c-461a-455a-b785-c6122f6c6df6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "5f87af3c-461a-455a-b785-c6122f6c6df6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 63.5804558, + "elementName" : "Stay (63.58046)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c5169953-2b5c-4d98-900a-58ffb83544a0" + }, + "attachedElementGuid" : { + "value" : "e77bbc70-fcdd-4212-9415-f60b37ee8281" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c5169953-2b5c-4d98-900a-58ffb83544a0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "c5169953-2b5c-4d98-900a-58ffb83544a0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "c5169953-2b5c-4d98-900a-58ffb83544a0" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "218ea17e-e175-40c0-810f-c87f6b43b34b" + }, + "attachedElementGuid" : { + "value" : "c5169953-2b5c-4d98-900a-58ffb83544a0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "218ea17e-e175-40c0-810f-c87f6b43b34b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "218ea17e-e175-40c0-810f-c87f6b43b34b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "218ea17e-e175-40c0-810f-c87f6b43b34b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "218ea17e-e175-40c0-810f-c87f6b43b34b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 63.6354561, + "elementName" : "Stay (63.63546)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "54c68b81-d0aa-4ed5-93b5-63eaaeb05bfa" + }, + "attachedElementGuid" : { + "value" : "e77bbc70-fcdd-4212-9415-f60b37ee8281" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "54c68b81-d0aa-4ed5-93b5-63eaaeb05bfa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "54c68b81-d0aa-4ed5-93b5-63eaaeb05bfa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "54c68b81-d0aa-4ed5-93b5-63eaaeb05bfa" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "13f3a3f2-0a8c-4039-bfc7-2cb2d3043b82" + }, + "attachedElementGuid" : { + "value" : "54c68b81-d0aa-4ed5-93b5-63eaaeb05bfa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "13f3a3f2-0a8c-4039-bfc7-2cb2d3043b82" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "13f3a3f2-0a8c-4039-bfc7-2cb2d3043b82" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "13f3a3f2-0a8c-4039-bfc7-2cb2d3043b82" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "13f3a3f2-0a8c-4039-bfc7-2cb2d3043b82" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Flick_BM,Assembly-CSharp", + "availableFlickDirections" : [ + + ], + "exactJudgeTime" : 63.69046, + "elementName" : "Flick (63.69046)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "150d286b-48ef-4a0d-97d5-1602cddf4e58" + }, + "attachedElementGuid" : { + "value" : "e77bbc70-fcdd-4212-9415-f60b37ee8281" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "150d286b-48ef-4a0d-97d5-1602cddf4e58" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "150d286b-48ef-4a0d-97d5-1602cddf4e58" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "150d286b-48ef-4a0d-97d5-1602cddf4e58" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualFlick", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1bd74b06-1b08-45ab-80a9-1f9a2cdce573" + }, + "attachedElementGuid" : { + "value" : "150d286b-48ef-4a0d-97d5-1602cddf4e58" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1.7, + "y" : 1.7, + "z" : 1.7 + }, + "attachedElementGuid" : { + "value" : "1bd74b06-1b08-45ab-80a9-1f9a2cdce573" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1bd74b06-1b08-45ab-80a9-1f9a2cdce573" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "1bd74b06-1b08-45ab-80a9-1f9a2cdce573" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "1bd74b06-1b08-45ab-80a9-1f9a2cdce573" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 64.34985, + "elementName" : "Tap (64.34985)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "adf79a9b-498c-47ea-a377-ddcbb6aaae09" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "adf79a9b-498c-47ea-a377-ddcbb6aaae09" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "adf79a9b-498c-47ea-a377-ddcbb6aaae09" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "adf79a9b-498c-47ea-a377-ddcbb6aaae09" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c84deb98-9e68-46fc-ab51-844c14f3c19f" + }, + "attachedElementGuid" : { + "value" : "adf79a9b-498c-47ea-a377-ddcbb6aaae09" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c84deb98-9e68-46fc-ab51-844c14f3c19f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c84deb98-9e68-46fc-ab51-844c14f3c19f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c84deb98-9e68-46fc-ab51-844c14f3c19f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "c84deb98-9e68-46fc-ab51-844c14f3c19f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 64.51507, + "elementName" : "Tap (64.51507)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f333c44e-cbaf-4dc6-bda1-0e9bf369863e" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f333c44e-cbaf-4dc6-bda1-0e9bf369863e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "f333c44e-cbaf-4dc6-bda1-0e9bf369863e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "f333c44e-cbaf-4dc6-bda1-0e9bf369863e" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e82a3077-07a1-4ede-88c6-61dabaf8f4ac" + }, + "attachedElementGuid" : { + "value" : "f333c44e-cbaf-4dc6-bda1-0e9bf369863e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e82a3077-07a1-4ede-88c6-61dabaf8f4ac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e82a3077-07a1-4ede-88c6-61dabaf8f4ac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e82a3077-07a1-4ede-88c6-61dabaf8f4ac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "e82a3077-07a1-4ede-88c6-61dabaf8f4ac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Hold_BM,Assembly-CSharp", + "holdEndTime" : 64.68507, + "exactJudgeTime" : 64.18507, + "elementName" : "Hold (64.18507-64.51507)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8a01092d-7f88-4343-84c8-4e8508b90a49" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8a01092d-7f88-4343-84c8-4e8508b90a49" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "8a01092d-7f88-4343-84c8-4e8508b90a49" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "8a01092d-7f88-4343-84c8-4e8508b90a49" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisualHold_BM,Assembly-CSharp", + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualHold", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "be75d8ab-9df5-48ca-b1e7-8ca1185a56a5" + }, + "attachedElementGuid" : { + "value" : "8a01092d-7f88-4343-84c8-4e8508b90a49" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "be75d8ab-9df5-48ca-b1e7-8ca1185a56a5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "be75d8ab-9df5-48ca-b1e7-8ca1185a56a5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "be75d8ab-9df5-48ca-b1e7-8ca1185a56a5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExtend_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.5 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteHoldingBreath_BM,Assembly-CSharp", + "effectTime" : 0.5 + } + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "be75d8ab-9df5-48ca-b1e7-8ca1185a56a5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Flick_BM,Assembly-CSharp", + "availableFlickDirections" : [ + + ], + "exactJudgeTime" : 64.68007, + "elementName" : "Flick (64.68007)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6aca601e-fc61-4478-8114-cdf79d1259f3" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6aca601e-fc61-4478-8114-cdf79d1259f3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "6aca601e-fc61-4478-8114-cdf79d1259f3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "6aca601e-fc61-4478-8114-cdf79d1259f3" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualFlick", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b80b62e5-e860-4381-a3fb-036312577adb" + }, + "attachedElementGuid" : { + "value" : "6aca601e-fc61-4478-8114-cdf79d1259f3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : -45 + }, + "originalScale" : { + "x" : 1.7, + "y" : 1.7, + "z" : 1.7 + }, + "attachedElementGuid" : { + "value" : "b80b62e5-e860-4381-a3fb-036312577adb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b80b62e5-e860-4381-a3fb-036312577adb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b80b62e5-e860-4381-a3fb-036312577adb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "b80b62e5-e860-4381-a3fb-036312577adb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 65.67007, + "elementName" : "Tap (65.67007)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3c643b1a-724e-4e12-abdf-d79f4b291fed" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3c643b1a-724e-4e12-abdf-d79f4b291fed" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "3c643b1a-724e-4e12-abdf-d79f4b291fed" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "3c643b1a-724e-4e12-abdf-d79f4b291fed" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "939820e8-f7eb-4301-b83d-e6e88ff4d1ed" + }, + "attachedElementGuid" : { + "value" : "3c643b1a-724e-4e12-abdf-d79f4b291fed" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "939820e8-f7eb-4301-b83d-e6e88ff4d1ed" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "939820e8-f7eb-4301-b83d-e6e88ff4d1ed" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "939820e8-f7eb-4301-b83d-e6e88ff4d1ed" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "939820e8-f7eb-4301-b83d-e6e88ff4d1ed" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 65.83507, + "elementName" : "Tap (65.83507)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "076f9f48-9570-45fb-8711-50938a819d5a" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "076f9f48-9570-45fb-8711-50938a819d5a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "076f9f48-9570-45fb-8711-50938a819d5a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "076f9f48-9570-45fb-8711-50938a819d5a" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d0641e5b-8644-455d-8daa-fdb51ceadb7a" + }, + "attachedElementGuid" : { + "value" : "076f9f48-9570-45fb-8711-50938a819d5a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d0641e5b-8644-455d-8daa-fdb51ceadb7a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d0641e5b-8644-455d-8daa-fdb51ceadb7a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d0641e5b-8644-455d-8daa-fdb51ceadb7a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d0641e5b-8644-455d-8daa-fdb51ceadb7a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 66.00007, + "elementName" : "Tap (66.00007)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cd6850f0-cd59-489d-ab61-e06c4c8c448d" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "cd6850f0-cd59-489d-ab61-e06c4c8c448d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "cd6850f0-cd59-489d-ab61-e06c4c8c448d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "cd6850f0-cd59-489d-ab61-e06c4c8c448d" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2eccd3ec-8f4f-4874-98db-24543e178169" + }, + "attachedElementGuid" : { + "value" : "cd6850f0-cd59-489d-ab61-e06c4c8c448d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2eccd3ec-8f4f-4874-98db-24543e178169" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2eccd3ec-8f4f-4874-98db-24543e178169" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "2eccd3ec-8f4f-4874-98db-24543e178169" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "2eccd3ec-8f4f-4874-98db-24543e178169" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 66.16507, + "elementName" : "Stay (66.16507)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9b4cd6ab-147e-4e39-8c4c-c015aa96b483" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9b4cd6ab-147e-4e39-8c4c-c015aa96b483" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "9b4cd6ab-147e-4e39-8c4c-c015aa96b483" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "9b4cd6ab-147e-4e39-8c4c-c015aa96b483" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d023f897-1be9-4884-8baf-7074efabff47" + }, + "attachedElementGuid" : { + "value" : "9b4cd6ab-147e-4e39-8c4c-c015aa96b483" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d023f897-1be9-4884-8baf-7074efabff47" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d023f897-1be9-4884-8baf-7074efabff47" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d023f897-1be9-4884-8baf-7074efabff47" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d023f897-1be9-4884-8baf-7074efabff47" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 66.24757, + "elementName" : "Stay (66.24757)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9e6ed471-7c9a-4cc6-b397-e4a33132a381" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9e6ed471-7c9a-4cc6-b397-e4a33132a381" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "9e6ed471-7c9a-4cc6-b397-e4a33132a381" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "9e6ed471-7c9a-4cc6-b397-e4a33132a381" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f030b710-2156-4d56-adfe-2118a3339980" + }, + "attachedElementGuid" : { + "value" : "9e6ed471-7c9a-4cc6-b397-e4a33132a381" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f030b710-2156-4d56-adfe-2118a3339980" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f030b710-2156-4d56-adfe-2118a3339980" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f030b710-2156-4d56-adfe-2118a3339980" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "f030b710-2156-4d56-adfe-2118a3339980" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 66.33007, + "elementName" : "Tap (66.33007)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "aad533cc-89e8-4c1a-91ed-036ff1acfa61" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "aad533cc-89e8-4c1a-91ed-036ff1acfa61" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "aad533cc-89e8-4c1a-91ed-036ff1acfa61" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "aad533cc-89e8-4c1a-91ed-036ff1acfa61" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "18f85773-0e70-42d1-a4de-058290e28ab5" + }, + "attachedElementGuid" : { + "value" : "aad533cc-89e8-4c1a-91ed-036ff1acfa61" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "18f85773-0e70-42d1-a4de-058290e28ab5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "18f85773-0e70-42d1-a4de-058290e28ab5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "18f85773-0e70-42d1-a4de-058290e28ab5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "18f85773-0e70-42d1-a4de-058290e28ab5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 66.41257, + "elementName" : "Tap (66.41257)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f5512398-7bf1-403c-88bb-c06260dc5d97" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f5512398-7bf1-403c-88bb-c06260dc5d97" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "f5512398-7bf1-403c-88bb-c06260dc5d97" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "f5512398-7bf1-403c-88bb-c06260dc5d97" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "56261a99-a858-4102-aa00-1b7fbc4c5f52" + }, + "attachedElementGuid" : { + "value" : "f5512398-7bf1-403c-88bb-c06260dc5d97" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "56261a99-a858-4102-aa00-1b7fbc4c5f52" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "56261a99-a858-4102-aa00-1b7fbc4c5f52" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "56261a99-a858-4102-aa00-1b7fbc4c5f52" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "56261a99-a858-4102-aa00-1b7fbc4c5f52" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 66.49507, + "elementName" : "Tap (66.49507)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "384d743e-210f-441a-934f-730327662c09" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "384d743e-210f-441a-934f-730327662c09" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "384d743e-210f-441a-934f-730327662c09" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "384d743e-210f-441a-934f-730327662c09" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "60e7389d-8f68-4649-a11f-4c5e84d3733f" + }, + "attachedElementGuid" : { + "value" : "384d743e-210f-441a-934f-730327662c09" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "60e7389d-8f68-4649-a11f-4c5e84d3733f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "60e7389d-8f68-4649-a11f-4c5e84d3733f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "60e7389d-8f68-4649-a11f-4c5e84d3733f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "60e7389d-8f68-4649-a11f-4c5e84d3733f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 66.57757, + "elementName" : "Tap (66.57757)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7513c6b7-17f7-4c12-8853-782920d7679f" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7513c6b7-17f7-4c12-8853-782920d7679f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "7513c6b7-17f7-4c12-8853-782920d7679f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "7513c6b7-17f7-4c12-8853-782920d7679f" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9f7ba060-e980-4723-8eb5-11792cff5e6b" + }, + "attachedElementGuid" : { + "value" : "7513c6b7-17f7-4c12-8853-782920d7679f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9f7ba060-e980-4723-8eb5-11792cff5e6b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9f7ba060-e980-4723-8eb5-11792cff5e6b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "9f7ba060-e980-4723-8eb5-11792cff5e6b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "9f7ba060-e980-4723-8eb5-11792cff5e6b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Flick_BM,Assembly-CSharp", + "availableFlickDirections" : [ + + ], + "exactJudgeTime" : 66.66007, + "elementName" : "Flick (66.66007)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4f60724c-0861-443e-b041-e2ab66780444" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4f60724c-0861-443e-b041-e2ab66780444" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "4f60724c-0861-443e-b041-e2ab66780444" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "4f60724c-0861-443e-b041-e2ab66780444" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualFlick", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "db73fa93-f30e-479d-b9c3-05ae44248445" + }, + "attachedElementGuid" : { + "value" : "4f60724c-0861-443e-b041-e2ab66780444" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 45 + }, + "originalScale" : { + "x" : 1.7, + "y" : 1.7, + "z" : 1.7 + }, + "attachedElementGuid" : { + "value" : "db73fa93-f30e-479d-b9c3-05ae44248445" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "db73fa93-f30e-479d-b9c3-05ae44248445" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "db73fa93-f30e-479d-b9c3-05ae44248445" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "db73fa93-f30e-479d-b9c3-05ae44248445" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 66.8250656, + "elementName" : "Tap (66.82507)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d80b2edc-b6a4-4a05-9971-25d00cb60939" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d80b2edc-b6a4-4a05-9971-25d00cb60939" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "d80b2edc-b6a4-4a05-9971-25d00cb60939" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "d80b2edc-b6a4-4a05-9971-25d00cb60939" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "65d6a2d0-c436-43d6-b7f9-fbe88680c98a" + }, + "attachedElementGuid" : { + "value" : "d80b2edc-b6a4-4a05-9971-25d00cb60939" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "65d6a2d0-c436-43d6-b7f9-fbe88680c98a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "65d6a2d0-c436-43d6-b7f9-fbe88680c98a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "65d6a2d0-c436-43d6-b7f9-fbe88680c98a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "65d6a2d0-c436-43d6-b7f9-fbe88680c98a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 67.15507, + "elementName" : "Tap (67.15507)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0cd4ecbf-ab83-4124-b5ea-9e6cdbdc762a" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0cd4ecbf-ab83-4124-b5ea-9e6cdbdc762a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "0cd4ecbf-ab83-4124-b5ea-9e6cdbdc762a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "0cd4ecbf-ab83-4124-b5ea-9e6cdbdc762a" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c4d06652-26aa-49f1-afbd-712eb168b453" + }, + "attachedElementGuid" : { + "value" : "0cd4ecbf-ab83-4124-b5ea-9e6cdbdc762a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c4d06652-26aa-49f1-afbd-712eb168b453" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c4d06652-26aa-49f1-afbd-712eb168b453" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c4d06652-26aa-49f1-afbd-712eb168b453" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "c4d06652-26aa-49f1-afbd-712eb168b453" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 67.32007, + "elementName" : "Tap (67.32007)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7df5da7b-d30a-4c23-a34c-2f66b9ce7fb8" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7df5da7b-d30a-4c23-a34c-2f66b9ce7fb8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "7df5da7b-d30a-4c23-a34c-2f66b9ce7fb8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "7df5da7b-d30a-4c23-a34c-2f66b9ce7fb8" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "80486f7f-f558-417c-a1a9-f137fcac2325" + }, + "attachedElementGuid" : { + "value" : "7df5da7b-d30a-4c23-a34c-2f66b9ce7fb8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "80486f7f-f558-417c-a1a9-f137fcac2325" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "80486f7f-f558-417c-a1a9-f137fcac2325" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "80486f7f-f558-417c-a1a9-f137fcac2325" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "80486f7f-f558-417c-a1a9-f137fcac2325" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 67.48507, + "elementName" : "Tap (67.48507)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ff237d01-2062-4bb2-8efd-c2772b35120c" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ff237d01-2062-4bb2-8efd-c2772b35120c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "ff237d01-2062-4bb2-8efd-c2772b35120c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "ff237d01-2062-4bb2-8efd-c2772b35120c" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "811e0c3f-3366-4a59-8f5a-366b2d11008d" + }, + "attachedElementGuid" : { + "value" : "ff237d01-2062-4bb2-8efd-c2772b35120c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "811e0c3f-3366-4a59-8f5a-366b2d11008d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "811e0c3f-3366-4a59-8f5a-366b2d11008d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "811e0c3f-3366-4a59-8f5a-366b2d11008d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "811e0c3f-3366-4a59-8f5a-366b2d11008d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 67.81507, + "elementName" : "Tap (67.81507)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "642c2793-8f8a-40b3-bdea-b4e98753e2c8" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "642c2793-8f8a-40b3-bdea-b4e98753e2c8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "642c2793-8f8a-40b3-bdea-b4e98753e2c8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "642c2793-8f8a-40b3-bdea-b4e98753e2c8" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9d67f89a-d7a4-43c0-81a8-5034aad1270b" + }, + "attachedElementGuid" : { + "value" : "642c2793-8f8a-40b3-bdea-b4e98753e2c8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9d67f89a-d7a4-43c0-81a8-5034aad1270b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9d67f89a-d7a4-43c0-81a8-5034aad1270b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "9d67f89a-d7a4-43c0-81a8-5034aad1270b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "9d67f89a-d7a4-43c0-81a8-5034aad1270b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 67.98007, + "elementName" : "Tap (67.98007)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "60a35978-1df7-4771-bc8a-bdc9761ed3cb" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "60a35978-1df7-4771-bc8a-bdc9761ed3cb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "60a35978-1df7-4771-bc8a-bdc9761ed3cb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "60a35978-1df7-4771-bc8a-bdc9761ed3cb" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7f524bba-3eb8-427d-a909-bd32679c87e9" + }, + "attachedElementGuid" : { + "value" : "60a35978-1df7-4771-bc8a-bdc9761ed3cb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7f524bba-3eb8-427d-a909-bd32679c87e9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7f524bba-3eb8-427d-a909-bd32679c87e9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "7f524bba-3eb8-427d-a909-bd32679c87e9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "7f524bba-3eb8-427d-a909-bd32679c87e9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 68.14507, + "elementName" : "Tap (68.14507)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5d28c621-5150-46a6-b36e-4f3c734dde3f" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5d28c621-5150-46a6-b36e-4f3c734dde3f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "5d28c621-5150-46a6-b36e-4f3c734dde3f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "5d28c621-5150-46a6-b36e-4f3c734dde3f" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7356e06b-607b-409d-9589-ef1ad3a85458" + }, + "attachedElementGuid" : { + "value" : "5d28c621-5150-46a6-b36e-4f3c734dde3f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7356e06b-607b-409d-9589-ef1ad3a85458" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7356e06b-607b-409d-9589-ef1ad3a85458" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "7356e06b-607b-409d-9589-ef1ad3a85458" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "7356e06b-607b-409d-9589-ef1ad3a85458" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 68.3100739, + "elementName" : "Tap (68.31007)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d1ae1c20-dfe7-477a-9732-803469633e8a" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d1ae1c20-dfe7-477a-9732-803469633e8a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "d1ae1c20-dfe7-477a-9732-803469633e8a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "d1ae1c20-dfe7-477a-9732-803469633e8a" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5797771a-16ae-490a-b297-43ab1ca7895f" + }, + "attachedElementGuid" : { + "value" : "d1ae1c20-dfe7-477a-9732-803469633e8a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5797771a-16ae-490a-b297-43ab1ca7895f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5797771a-16ae-490a-b297-43ab1ca7895f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5797771a-16ae-490a-b297-43ab1ca7895f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "5797771a-16ae-490a-b297-43ab1ca7895f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 68.47507, + "elementName" : "Tap (68.47507)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a093b045-5d50-4d03-a6b3-6594583ce98e" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a093b045-5d50-4d03-a6b3-6594583ce98e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "a093b045-5d50-4d03-a6b3-6594583ce98e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "a093b045-5d50-4d03-a6b3-6594583ce98e" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e188aa12-f40b-4e4f-8e89-15b3c9caacc5" + }, + "attachedElementGuid" : { + "value" : "a093b045-5d50-4d03-a6b3-6594583ce98e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e188aa12-f40b-4e4f-8e89-15b3c9caacc5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e188aa12-f40b-4e4f-8e89-15b3c9caacc5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e188aa12-f40b-4e4f-8e89-15b3c9caacc5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "e188aa12-f40b-4e4f-8e89-15b3c9caacc5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 68.64007, + "elementName" : "Tap (68.64007)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b54e7eb6-503b-46f9-900a-e8b569412236" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b54e7eb6-503b-46f9-900a-e8b569412236" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "b54e7eb6-503b-46f9-900a-e8b569412236" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "b54e7eb6-503b-46f9-900a-e8b569412236" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cd21bdb0-64dd-47a0-9fe4-a06dad20d8be" + }, + "attachedElementGuid" : { + "value" : "b54e7eb6-503b-46f9-900a-e8b569412236" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "cd21bdb0-64dd-47a0-9fe4-a06dad20d8be" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "cd21bdb0-64dd-47a0-9fe4-a06dad20d8be" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "cd21bdb0-64dd-47a0-9fe4-a06dad20d8be" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "cd21bdb0-64dd-47a0-9fe4-a06dad20d8be" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 68.80507, + "elementName" : "Tap (68.80507)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "337f3629-4f5d-41f4-adb7-c9a0f0d4b6bb" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "337f3629-4f5d-41f4-adb7-c9a0f0d4b6bb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "337f3629-4f5d-41f4-adb7-c9a0f0d4b6bb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "337f3629-4f5d-41f4-adb7-c9a0f0d4b6bb" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "54874f33-3d84-4d10-9d67-58bf91db17bd" + }, + "attachedElementGuid" : { + "value" : "337f3629-4f5d-41f4-adb7-c9a0f0d4b6bb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "54874f33-3d84-4d10-9d67-58bf91db17bd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "54874f33-3d84-4d10-9d67-58bf91db17bd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "54874f33-3d84-4d10-9d67-58bf91db17bd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "54874f33-3d84-4d10-9d67-58bf91db17bd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 68.97007, + "elementName" : "Tap (68.97007)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6e74bf3d-031d-47aa-89ef-54cb4e94d2e7" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6e74bf3d-031d-47aa-89ef-54cb4e94d2e7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "6e74bf3d-031d-47aa-89ef-54cb4e94d2e7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "6e74bf3d-031d-47aa-89ef-54cb4e94d2e7" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2ad11785-3649-41ea-9a88-d67119ee8b9e" + }, + "attachedElementGuid" : { + "value" : "6e74bf3d-031d-47aa-89ef-54cb4e94d2e7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2ad11785-3649-41ea-9a88-d67119ee8b9e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2ad11785-3649-41ea-9a88-d67119ee8b9e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "2ad11785-3649-41ea-9a88-d67119ee8b9e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "2ad11785-3649-41ea-9a88-d67119ee8b9e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 69.13507, + "elementName" : "Tap (69.13507)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fb19bbb0-494f-4e32-863f-594b75172c99" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fb19bbb0-494f-4e32-863f-594b75172c99" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "fb19bbb0-494f-4e32-863f-594b75172c99" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "fb19bbb0-494f-4e32-863f-594b75172c99" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "35c3d18a-ce6b-4662-890e-9cec079fc38c" + }, + "attachedElementGuid" : { + "value" : "fb19bbb0-494f-4e32-863f-594b75172c99" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "35c3d18a-ce6b-4662-890e-9cec079fc38c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "35c3d18a-ce6b-4662-890e-9cec079fc38c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "35c3d18a-ce6b-4662-890e-9cec079fc38c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "35c3d18a-ce6b-4662-890e-9cec079fc38c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 69.30007, + "elementName" : "Tap (69.30007)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "189bf16b-6dfb-4562-8b59-b89ba7e8ecc4" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "189bf16b-6dfb-4562-8b59-b89ba7e8ecc4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "189bf16b-6dfb-4562-8b59-b89ba7e8ecc4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "189bf16b-6dfb-4562-8b59-b89ba7e8ecc4" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "351868ad-7af0-447b-962d-e57f75f3a136" + }, + "attachedElementGuid" : { + "value" : "189bf16b-6dfb-4562-8b59-b89ba7e8ecc4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "351868ad-7af0-447b-962d-e57f75f3a136" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "351868ad-7af0-447b-962d-e57f75f3a136" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "351868ad-7af0-447b-962d-e57f75f3a136" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "351868ad-7af0-447b-962d-e57f75f3a136" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 69.46507, + "elementName" : "Tap (69.46507)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "78864091-c7ab-4ecc-ad8e-9cf6a27ec2b3" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "78864091-c7ab-4ecc-ad8e-9cf6a27ec2b3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "78864091-c7ab-4ecc-ad8e-9cf6a27ec2b3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "78864091-c7ab-4ecc-ad8e-9cf6a27ec2b3" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6a80bc32-edce-48c8-8686-a4920ff5a5a2" + }, + "attachedElementGuid" : { + "value" : "78864091-c7ab-4ecc-ad8e-9cf6a27ec2b3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6a80bc32-edce-48c8-8686-a4920ff5a5a2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6a80bc32-edce-48c8-8686-a4920ff5a5a2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6a80bc32-edce-48c8-8686-a4920ff5a5a2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "6a80bc32-edce-48c8-8686-a4920ff5a5a2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Hold_BM,Assembly-CSharp", + "holdEndTime" : 70.13007, + "exactJudgeTime" : 69.63007, + "elementName" : "Hold (69.63007-70.13007)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "16328794-3728-407a-98dd-3dfe31eb00b6" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "16328794-3728-407a-98dd-3dfe31eb00b6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "16328794-3728-407a-98dd-3dfe31eb00b6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "16328794-3728-407a-98dd-3dfe31eb00b6" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisualHold_BM,Assembly-CSharp", + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualHold", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "566e9425-e75e-4957-8bd0-2a211b0a47e1" + }, + "attachedElementGuid" : { + "value" : "16328794-3728-407a-98dd-3dfe31eb00b6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "566e9425-e75e-4957-8bd0-2a211b0a47e1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "566e9425-e75e-4957-8bd0-2a211b0a47e1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "566e9425-e75e-4957-8bd0-2a211b0a47e1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExtend_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.5 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteHoldingBreath_BM,Assembly-CSharp", + "effectTime" : 0.5 + } + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "566e9425-e75e-4957-8bd0-2a211b0a47e1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 69.9600754, + "elementName" : "Tap (69.96008)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "676f4e5c-ab32-4f0e-b873-fa4aeb8dfd06" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "676f4e5c-ab32-4f0e-b873-fa4aeb8dfd06" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "676f4e5c-ab32-4f0e-b873-fa4aeb8dfd06" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "676f4e5c-ab32-4f0e-b873-fa4aeb8dfd06" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "30bddd68-fc49-4066-bb7b-a5b1e083cd75" + }, + "attachedElementGuid" : { + "value" : "676f4e5c-ab32-4f0e-b873-fa4aeb8dfd06" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "30bddd68-fc49-4066-bb7b-a5b1e083cd75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "30bddd68-fc49-4066-bb7b-a5b1e083cd75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "30bddd68-fc49-4066-bb7b-a5b1e083cd75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "30bddd68-fc49-4066-bb7b-a5b1e083cd75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 70.04257, + "elementName" : "Stay (70.04257)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "630d9c29-bcb5-4a82-94e3-d606c68dfb45" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "630d9c29-bcb5-4a82-94e3-d606c68dfb45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "630d9c29-bcb5-4a82-94e3-d606c68dfb45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "630d9c29-bcb5-4a82-94e3-d606c68dfb45" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3d0764ea-a65f-4d9a-81b1-cf4d176ecf05" + }, + "attachedElementGuid" : { + "value" : "630d9c29-bcb5-4a82-94e3-d606c68dfb45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3d0764ea-a65f-4d9a-81b1-cf4d176ecf05" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3d0764ea-a65f-4d9a-81b1-cf4d176ecf05" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3d0764ea-a65f-4d9a-81b1-cf4d176ecf05" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "3d0764ea-a65f-4d9a-81b1-cf4d176ecf05" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 70.12507, + "elementName" : "Stay (70.12507)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5f96d87a-62fa-4605-a743-1e07b4dedc5a" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5f96d87a-62fa-4605-a743-1e07b4dedc5a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "5f96d87a-62fa-4605-a743-1e07b4dedc5a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "5f96d87a-62fa-4605-a743-1e07b4dedc5a" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "036dd631-9af0-42c3-b7cc-02c57aa5aef3" + }, + "attachedElementGuid" : { + "value" : "5f96d87a-62fa-4605-a743-1e07b4dedc5a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "036dd631-9af0-42c3-b7cc-02c57aa5aef3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "036dd631-9af0-42c3-b7cc-02c57aa5aef3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "036dd631-9af0-42c3-b7cc-02c57aa5aef3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "036dd631-9af0-42c3-b7cc-02c57aa5aef3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 70.20757, + "elementName" : "Stay (70.20757)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8b34294b-4f77-405a-ab53-a2fbf46d3683" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8b34294b-4f77-405a-ab53-a2fbf46d3683" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "8b34294b-4f77-405a-ab53-a2fbf46d3683" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "8b34294b-4f77-405a-ab53-a2fbf46d3683" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "272116fa-155b-4433-988e-2a085e40b239" + }, + "attachedElementGuid" : { + "value" : "8b34294b-4f77-405a-ab53-a2fbf46d3683" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "272116fa-155b-4433-988e-2a085e40b239" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "272116fa-155b-4433-988e-2a085e40b239" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "272116fa-155b-4433-988e-2a085e40b239" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "272116fa-155b-4433-988e-2a085e40b239" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 70.29007, + "elementName" : "Stay (70.29007)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "32d94e78-9cc2-46bc-a8c4-5660040d779b" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "32d94e78-9cc2-46bc-a8c4-5660040d779b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "32d94e78-9cc2-46bc-a8c4-5660040d779b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "32d94e78-9cc2-46bc-a8c4-5660040d779b" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f01564cf-707c-4168-826e-6af999972bc9" + }, + "attachedElementGuid" : { + "value" : "32d94e78-9cc2-46bc-a8c4-5660040d779b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f01564cf-707c-4168-826e-6af999972bc9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f01564cf-707c-4168-826e-6af999972bc9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f01564cf-707c-4168-826e-6af999972bc9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "f01564cf-707c-4168-826e-6af999972bc9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 70.29007, + "elementName" : "Tap (70.29007)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "520cca79-8eed-448d-b839-94cb7a94ea15" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "520cca79-8eed-448d-b839-94cb7a94ea15" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "520cca79-8eed-448d-b839-94cb7a94ea15" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "520cca79-8eed-448d-b839-94cb7a94ea15" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ae574637-432b-4645-9000-b1e76c04d2fd" + }, + "attachedElementGuid" : { + "value" : "520cca79-8eed-448d-b839-94cb7a94ea15" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ae574637-432b-4645-9000-b1e76c04d2fd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ae574637-432b-4645-9000-b1e76c04d2fd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ae574637-432b-4645-9000-b1e76c04d2fd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "ae574637-432b-4645-9000-b1e76c04d2fd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 70.39977, + "elementName" : "Stay (70.39977)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "34a77b06-fb00-4f08-b561-552f20dd8dce" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "34a77b06-fb00-4f08-b561-552f20dd8dce" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "34a77b06-fb00-4f08-b561-552f20dd8dce" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "34a77b06-fb00-4f08-b561-552f20dd8dce" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "272172ff-b32b-49a5-a1ad-fb1dd5700049" + }, + "attachedElementGuid" : { + "value" : "34a77b06-fb00-4f08-b561-552f20dd8dce" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "272172ff-b32b-49a5-a1ad-fb1dd5700049" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "272172ff-b32b-49a5-a1ad-fb1dd5700049" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "272172ff-b32b-49a5-a1ad-fb1dd5700049" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "272172ff-b32b-49a5-a1ad-fb1dd5700049" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 70.5097656, + "elementName" : "Stay (70.50977)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4096d540-6c6f-4aff-87d1-0ef34ea9e442" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4096d540-6c6f-4aff-87d1-0ef34ea9e442" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "4096d540-6c6f-4aff-87d1-0ef34ea9e442" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "4096d540-6c6f-4aff-87d1-0ef34ea9e442" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3f9b6a8c-47fa-43a3-9ee7-2b0195862011" + }, + "attachedElementGuid" : { + "value" : "4096d540-6c6f-4aff-87d1-0ef34ea9e442" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3f9b6a8c-47fa-43a3-9ee7-2b0195862011" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3f9b6a8c-47fa-43a3-9ee7-2b0195862011" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3f9b6a8c-47fa-43a3-9ee7-2b0195862011" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "3f9b6a8c-47fa-43a3-9ee7-2b0195862011" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 72.93008, + "elementName" : "Tap (72.93008)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f1e8912c-b1d4-410f-8bf8-c0e6ffcb39db" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f1e8912c-b1d4-410f-8bf8-c0e6ffcb39db" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "f1e8912c-b1d4-410f-8bf8-c0e6ffcb39db" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "f1e8912c-b1d4-410f-8bf8-c0e6ffcb39db" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "184bf54e-391a-41ea-a295-4ccc24347cfa" + }, + "attachedElementGuid" : { + "value" : "f1e8912c-b1d4-410f-8bf8-c0e6ffcb39db" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "184bf54e-391a-41ea-a295-4ccc24347cfa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "184bf54e-391a-41ea-a295-4ccc24347cfa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "184bf54e-391a-41ea-a295-4ccc24347cfa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "184bf54e-391a-41ea-a295-4ccc24347cfa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 72.93008, + "elementName" : "Tap (72.93008)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7099d23a-26b6-432a-8079-a1a2f764a40e" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7099d23a-26b6-432a-8079-a1a2f764a40e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "7099d23a-26b6-432a-8079-a1a2f764a40e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "7099d23a-26b6-432a-8079-a1a2f764a40e" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fbe5ea97-c618-42bc-8e95-45ce6dfafb6b" + }, + "attachedElementGuid" : { + "value" : "7099d23a-26b6-432a-8079-a1a2f764a40e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "fbe5ea97-c618-42bc-8e95-45ce6dfafb6b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fbe5ea97-c618-42bc-8e95-45ce6dfafb6b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "fbe5ea97-c618-42bc-8e95-45ce6dfafb6b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "fbe5ea97-c618-42bc-8e95-45ce6dfafb6b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 73.09508, + "elementName" : "Tap (73.09508)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "40a7b792-d5ce-46e6-ab38-2c5ee5196483" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "40a7b792-d5ce-46e6-ab38-2c5ee5196483" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "40a7b792-d5ce-46e6-ab38-2c5ee5196483" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "40a7b792-d5ce-46e6-ab38-2c5ee5196483" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0c9851db-a19a-4a33-bf38-831aebf6e1e3" + }, + "attachedElementGuid" : { + "value" : "40a7b792-d5ce-46e6-ab38-2c5ee5196483" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0c9851db-a19a-4a33-bf38-831aebf6e1e3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0c9851db-a19a-4a33-bf38-831aebf6e1e3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0c9851db-a19a-4a33-bf38-831aebf6e1e3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "0c9851db-a19a-4a33-bf38-831aebf6e1e3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 73.26008, + "elementName" : "Tap (73.26008)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "48d0a312-896d-4e1f-afe2-1a1a11972cd5" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "48d0a312-896d-4e1f-afe2-1a1a11972cd5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "48d0a312-896d-4e1f-afe2-1a1a11972cd5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "48d0a312-896d-4e1f-afe2-1a1a11972cd5" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0f586ed2-7d0f-4b6d-a8c4-91e444a9c8ce" + }, + "attachedElementGuid" : { + "value" : "48d0a312-896d-4e1f-afe2-1a1a11972cd5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0f586ed2-7d0f-4b6d-a8c4-91e444a9c8ce" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0f586ed2-7d0f-4b6d-a8c4-91e444a9c8ce" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0f586ed2-7d0f-4b6d-a8c4-91e444a9c8ce" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "0f586ed2-7d0f-4b6d-a8c4-91e444a9c8ce" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 73.42508, + "elementName" : "Tap (73.42508)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a0e066e6-25ab-4163-a7f7-a33265213111" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a0e066e6-25ab-4163-a7f7-a33265213111" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "a0e066e6-25ab-4163-a7f7-a33265213111" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "a0e066e6-25ab-4163-a7f7-a33265213111" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2de90dd7-861c-481e-a058-e533cde1f93a" + }, + "attachedElementGuid" : { + "value" : "a0e066e6-25ab-4163-a7f7-a33265213111" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2de90dd7-861c-481e-a058-e533cde1f93a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2de90dd7-861c-481e-a058-e533cde1f93a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "2de90dd7-861c-481e-a058-e533cde1f93a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "2de90dd7-861c-481e-a058-e533cde1f93a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 73.59007, + "elementName" : "Tap (73.59007)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "eb28f2c3-a21b-4bf8-8ca5-3b8a87107973" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "eb28f2c3-a21b-4bf8-8ca5-3b8a87107973" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "eb28f2c3-a21b-4bf8-8ca5-3b8a87107973" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "eb28f2c3-a21b-4bf8-8ca5-3b8a87107973" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cae7617d-7b15-4f30-a2d3-6de6b052cead" + }, + "attachedElementGuid" : { + "value" : "eb28f2c3-a21b-4bf8-8ca5-3b8a87107973" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "cae7617d-7b15-4f30-a2d3-6de6b052cead" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "cae7617d-7b15-4f30-a2d3-6de6b052cead" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "cae7617d-7b15-4f30-a2d3-6de6b052cead" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "cae7617d-7b15-4f30-a2d3-6de6b052cead" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 73.80972, + "elementName" : "Tap (73.80972)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b339b375-5364-47fa-8491-098744c77813" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b339b375-5364-47fa-8491-098744c77813" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "b339b375-5364-47fa-8491-098744c77813" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "b339b375-5364-47fa-8491-098744c77813" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c4d1c9fd-f351-4bf9-8d47-bbb442895be8" + }, + "attachedElementGuid" : { + "value" : "b339b375-5364-47fa-8491-098744c77813" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c4d1c9fd-f351-4bf9-8d47-bbb442895be8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c4d1c9fd-f351-4bf9-8d47-bbb442895be8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c4d1c9fd-f351-4bf9-8d47-bbb442895be8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "c4d1c9fd-f351-4bf9-8d47-bbb442895be8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 74.24972, + "elementName" : "Tap (74.24972)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8938f469-53c7-4891-b05e-d94eeea576f1" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8938f469-53c7-4891-b05e-d94eeea576f1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "8938f469-53c7-4891-b05e-d94eeea576f1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "8938f469-53c7-4891-b05e-d94eeea576f1" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "61d1e2ef-a57a-4f17-835d-be314b074e59" + }, + "attachedElementGuid" : { + "value" : "8938f469-53c7-4891-b05e-d94eeea576f1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "61d1e2ef-a57a-4f17-835d-be314b074e59" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "61d1e2ef-a57a-4f17-835d-be314b074e59" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "61d1e2ef-a57a-4f17-835d-be314b074e59" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "61d1e2ef-a57a-4f17-835d-be314b074e59" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 74.35971, + "elementName" : "Tap (74.35971)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cbcd961c-8e33-4a0a-a869-065b204bf8db" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "cbcd961c-8e33-4a0a-a869-065b204bf8db" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "cbcd961c-8e33-4a0a-a869-065b204bf8db" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "cbcd961c-8e33-4a0a-a869-065b204bf8db" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "866604be-efe2-465a-9ac0-41d479ab6089" + }, + "attachedElementGuid" : { + "value" : "cbcd961c-8e33-4a0a-a869-065b204bf8db" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "866604be-efe2-465a-9ac0-41d479ab6089" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "866604be-efe2-465a-9ac0-41d479ab6089" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "866604be-efe2-465a-9ac0-41d479ab6089" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "866604be-efe2-465a-9ac0-41d479ab6089" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 74.46971, + "elementName" : "Tap (74.46971)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "32945b1b-2b03-4c0c-acef-b712752a01c5" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "32945b1b-2b03-4c0c-acef-b712752a01c5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "32945b1b-2b03-4c0c-acef-b712752a01c5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "32945b1b-2b03-4c0c-acef-b712752a01c5" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "47d384b3-45a1-4758-af40-51b173efc500" + }, + "attachedElementGuid" : { + "value" : "32945b1b-2b03-4c0c-acef-b712752a01c5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "47d384b3-45a1-4758-af40-51b173efc500" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "47d384b3-45a1-4758-af40-51b173efc500" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "47d384b3-45a1-4758-af40-51b173efc500" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "47d384b3-45a1-4758-af40-51b173efc500" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 73.9197159, + "elementName" : "Tap (73.91972)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ff2a2bda-1274-4e1e-bf45-1443c52d83b3" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ff2a2bda-1274-4e1e-bf45-1443c52d83b3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "ff2a2bda-1274-4e1e-bf45-1443c52d83b3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "ff2a2bda-1274-4e1e-bf45-1443c52d83b3" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "407a2e56-6b86-48ff-8257-1d9e65e12ff6" + }, + "attachedElementGuid" : { + "value" : "ff2a2bda-1274-4e1e-bf45-1443c52d83b3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "407a2e56-6b86-48ff-8257-1d9e65e12ff6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "407a2e56-6b86-48ff-8257-1d9e65e12ff6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "407a2e56-6b86-48ff-8257-1d9e65e12ff6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "407a2e56-6b86-48ff-8257-1d9e65e12ff6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 74.13972, + "elementName" : "Tap (74.13972)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f0bf7f93-38ab-470c-894d-39d0ac49cf9f" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f0bf7f93-38ab-470c-894d-39d0ac49cf9f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "f0bf7f93-38ab-470c-894d-39d0ac49cf9f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "f0bf7f93-38ab-470c-894d-39d0ac49cf9f" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "186f97af-5c2b-44c7-84d0-b85fc5ea867a" + }, + "attachedElementGuid" : { + "value" : "f0bf7f93-38ab-470c-894d-39d0ac49cf9f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "186f97af-5c2b-44c7-84d0-b85fc5ea867a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "186f97af-5c2b-44c7-84d0-b85fc5ea867a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "186f97af-5c2b-44c7-84d0-b85fc5ea867a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "186f97af-5c2b-44c7-84d0-b85fc5ea867a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 74.02972, + "elementName" : "Tap (74.02972)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "98276dab-6b2d-4e03-ac01-844056a02faa" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "98276dab-6b2d-4e03-ac01-844056a02faa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "98276dab-6b2d-4e03-ac01-844056a02faa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "98276dab-6b2d-4e03-ac01-844056a02faa" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3f9d00cc-84ad-4dbb-b1d5-69ead955f881" + }, + "attachedElementGuid" : { + "value" : "98276dab-6b2d-4e03-ac01-844056a02faa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3f9d00cc-84ad-4dbb-b1d5-69ead955f881" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3f9d00cc-84ad-4dbb-b1d5-69ead955f881" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3f9d00cc-84ad-4dbb-b1d5-69ead955f881" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "3f9d00cc-84ad-4dbb-b1d5-69ead955f881" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 74.7997055, + "elementName" : "Tap (74.79971)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3db9f26a-9036-4266-a7d0-a3a8bbf6d8ac" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3db9f26a-9036-4266-a7d0-a3a8bbf6d8ac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "3db9f26a-9036-4266-a7d0-a3a8bbf6d8ac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "3db9f26a-9036-4266-a7d0-a3a8bbf6d8ac" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "61311c8a-81a0-4c71-bc3e-c2da1b5e2cdd" + }, + "attachedElementGuid" : { + "value" : "3db9f26a-9036-4266-a7d0-a3a8bbf6d8ac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "61311c8a-81a0-4c71-bc3e-c2da1b5e2cdd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "61311c8a-81a0-4c71-bc3e-c2da1b5e2cdd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "61311c8a-81a0-4c71-bc3e-c2da1b5e2cdd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "61311c8a-81a0-4c71-bc3e-c2da1b5e2cdd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 74.6897049, + "elementName" : "Tap (74.6897)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0565ff85-5a40-4a71-84e5-b12538361545" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0565ff85-5a40-4a71-84e5-b12538361545" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "0565ff85-5a40-4a71-84e5-b12538361545" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "0565ff85-5a40-4a71-84e5-b12538361545" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5b1fca10-1d8b-4c3c-b223-3fcca865c641" + }, + "attachedElementGuid" : { + "value" : "0565ff85-5a40-4a71-84e5-b12538361545" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5b1fca10-1d8b-4c3c-b223-3fcca865c641" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5b1fca10-1d8b-4c3c-b223-3fcca865c641" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5b1fca10-1d8b-4c3c-b223-3fcca865c641" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "5b1fca10-1d8b-4c3c-b223-3fcca865c641" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 74.91008, + "elementName" : "Tap (74.91008)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "226eec14-8e54-4fec-bc2f-152204e1c8b7" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "226eec14-8e54-4fec-bc2f-152204e1c8b7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "226eec14-8e54-4fec-bc2f-152204e1c8b7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "226eec14-8e54-4fec-bc2f-152204e1c8b7" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2d35d17a-0cbc-4a7f-81d8-a640ef179704" + }, + "attachedElementGuid" : { + "value" : "226eec14-8e54-4fec-bc2f-152204e1c8b7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2d35d17a-0cbc-4a7f-81d8-a640ef179704" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2d35d17a-0cbc-4a7f-81d8-a640ef179704" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "2d35d17a-0cbc-4a7f-81d8-a640ef179704" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "2d35d17a-0cbc-4a7f-81d8-a640ef179704" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 75.07508, + "elementName" : "Tap (75.07508)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "28d9f2c2-00d1-437e-998a-4961af3bc2af" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "28d9f2c2-00d1-437e-998a-4961af3bc2af" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "28d9f2c2-00d1-437e-998a-4961af3bc2af" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "28d9f2c2-00d1-437e-998a-4961af3bc2af" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bbfc887f-a093-4620-9992-2819fa52e4dc" + }, + "attachedElementGuid" : { + "value" : "28d9f2c2-00d1-437e-998a-4961af3bc2af" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "bbfc887f-a093-4620-9992-2819fa52e4dc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bbfc887f-a093-4620-9992-2819fa52e4dc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "bbfc887f-a093-4620-9992-2819fa52e4dc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "bbfc887f-a093-4620-9992-2819fa52e4dc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 75.2400742, + "elementName" : "Tap (75.24007)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "496cbccd-05e1-4c09-8e98-890e1652dbb6" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "496cbccd-05e1-4c09-8e98-890e1652dbb6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "496cbccd-05e1-4c09-8e98-890e1652dbb6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "496cbccd-05e1-4c09-8e98-890e1652dbb6" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0f8efcbe-8493-419f-b47e-646587f4311a" + }, + "attachedElementGuid" : { + "value" : "496cbccd-05e1-4c09-8e98-890e1652dbb6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0f8efcbe-8493-419f-b47e-646587f4311a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0f8efcbe-8493-419f-b47e-646587f4311a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0f8efcbe-8493-419f-b47e-646587f4311a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "0f8efcbe-8493-419f-b47e-646587f4311a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 75.4050751, + "elementName" : "Tap (75.40508)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "14524b2c-19ab-4f56-bdab-1955485760a8" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "14524b2c-19ab-4f56-bdab-1955485760a8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "14524b2c-19ab-4f56-bdab-1955485760a8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "14524b2c-19ab-4f56-bdab-1955485760a8" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e8c5abe8-a770-4579-9644-1f232978fc69" + }, + "attachedElementGuid" : { + "value" : "14524b2c-19ab-4f56-bdab-1955485760a8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e8c5abe8-a770-4579-9644-1f232978fc69" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e8c5abe8-a770-4579-9644-1f232978fc69" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e8c5abe8-a770-4579-9644-1f232978fc69" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "e8c5abe8-a770-4579-9644-1f232978fc69" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Hold_BM,Assembly-CSharp", + "holdEndTime" : 76.070076, + "exactJudgeTime" : 75.570076, + "elementName" : "Hold (75.57008-76.07008)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "31c46278-ff53-4cea-adad-57ae703d3108" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "31c46278-ff53-4cea-adad-57ae703d3108" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "31c46278-ff53-4cea-adad-57ae703d3108" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "31c46278-ff53-4cea-adad-57ae703d3108" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisualHold_BM,Assembly-CSharp", + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualHold", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "32b5cca9-b17d-4f83-a7f6-376dd95f43be" + }, + "attachedElementGuid" : { + "value" : "31c46278-ff53-4cea-adad-57ae703d3108" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "32b5cca9-b17d-4f83-a7f6-376dd95f43be" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "32b5cca9-b17d-4f83-a7f6-376dd95f43be" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "32b5cca9-b17d-4f83-a7f6-376dd95f43be" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExtend_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.5 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteHoldingBreath_BM,Assembly-CSharp", + "effectTime" : 0.5 + } + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "32b5cca9-b17d-4f83-a7f6-376dd95f43be" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 76.06508, + "elementName" : "Tap (76.06508)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5c4f0f33-418a-4630-b5a3-5266c56e6c02" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5c4f0f33-418a-4630-b5a3-5266c56e6c02" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "5c4f0f33-418a-4630-b5a3-5266c56e6c02" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "5c4f0f33-418a-4630-b5a3-5266c56e6c02" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c45fb388-e72f-4e9f-bcd9-cba04443f37a" + }, + "attachedElementGuid" : { + "value" : "5c4f0f33-418a-4630-b5a3-5266c56e6c02" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c45fb388-e72f-4e9f-bcd9-cba04443f37a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c45fb388-e72f-4e9f-bcd9-cba04443f37a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c45fb388-e72f-4e9f-bcd9-cba04443f37a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "c45fb388-e72f-4e9f-bcd9-cba04443f37a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 76.1475754, + "elementName" : "Stay (76.14758)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "48f4c446-ee31-45ac-8f14-850d05b283d7" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "48f4c446-ee31-45ac-8f14-850d05b283d7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "48f4c446-ee31-45ac-8f14-850d05b283d7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "48f4c446-ee31-45ac-8f14-850d05b283d7" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a8aa28ec-b3a1-453b-b162-d3bf0b7308bc" + }, + "attachedElementGuid" : { + "value" : "48f4c446-ee31-45ac-8f14-850d05b283d7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a8aa28ec-b3a1-453b-b162-d3bf0b7308bc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a8aa28ec-b3a1-453b-b162-d3bf0b7308bc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a8aa28ec-b3a1-453b-b162-d3bf0b7308bc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "a8aa28ec-b3a1-453b-b162-d3bf0b7308bc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 76.89, + "elementName" : "Tap (76.89)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3b57e093-c381-46c9-9f87-fa9ce7502763" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3b57e093-c381-46c9-9f87-fa9ce7502763" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "3b57e093-c381-46c9-9f87-fa9ce7502763" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "3b57e093-c381-46c9-9f87-fa9ce7502763" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f23e75b0-82ae-4629-91d2-f634dcc4f460" + }, + "attachedElementGuid" : { + "value" : "3b57e093-c381-46c9-9f87-fa9ce7502763" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f23e75b0-82ae-4629-91d2-f634dcc4f460" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f23e75b0-82ae-4629-91d2-f634dcc4f460" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f23e75b0-82ae-4629-91d2-f634dcc4f460" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "f23e75b0-82ae-4629-91d2-f634dcc4f460" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 76.89, + "elementName" : "Tap (76.89)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1f5ef0a3-ee57-483c-9fcd-b0933219f830" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1f5ef0a3-ee57-483c-9fcd-b0933219f830" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "1f5ef0a3-ee57-483c-9fcd-b0933219f830" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "1f5ef0a3-ee57-483c-9fcd-b0933219f830" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8291a15c-037b-41a1-9523-5dea26b8a563" + }, + "attachedElementGuid" : { + "value" : "1f5ef0a3-ee57-483c-9fcd-b0933219f830" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8291a15c-037b-41a1-9523-5dea26b8a563" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8291a15c-037b-41a1-9523-5dea26b8a563" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8291a15c-037b-41a1-9523-5dea26b8a563" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "8291a15c-037b-41a1-9523-5dea26b8a563" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Flick_BM,Assembly-CSharp", + "availableFlickDirections" : [ + + ], + "exactJudgeTime" : 76.5596848, + "elementName" : "Flick (76.55968)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d519897e-8be0-432b-8544-0a33b150d42d" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d519897e-8be0-432b-8544-0a33b150d42d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "d519897e-8be0-432b-8544-0a33b150d42d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "d519897e-8be0-432b-8544-0a33b150d42d" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualFlick", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9c76dd83-c2f6-4a78-9372-dddf007eb185" + }, + "attachedElementGuid" : { + "value" : "d519897e-8be0-432b-8544-0a33b150d42d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : -45 + }, + "originalScale" : { + "x" : 1.7, + "y" : 1.7, + "z" : 1.7 + }, + "attachedElementGuid" : { + "value" : "9c76dd83-c2f6-4a78-9372-dddf007eb185" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9c76dd83-c2f6-4a78-9372-dddf007eb185" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "9c76dd83-c2f6-4a78-9372-dddf007eb185" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "9c76dd83-c2f6-4a78-9372-dddf007eb185" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 77.22, + "elementName" : "Tap (77.22)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c854a4b6-e225-4a8b-906e-85955c9d4a30" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c854a4b6-e225-4a8b-906e-85955c9d4a30" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "c854a4b6-e225-4a8b-906e-85955c9d4a30" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "c854a4b6-e225-4a8b-906e-85955c9d4a30" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "aeee5301-727a-4245-be88-ddd6ed6fcb62" + }, + "attachedElementGuid" : { + "value" : "c854a4b6-e225-4a8b-906e-85955c9d4a30" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "aeee5301-727a-4245-be88-ddd6ed6fcb62" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "aeee5301-727a-4245-be88-ddd6ed6fcb62" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "aeee5301-727a-4245-be88-ddd6ed6fcb62" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "aeee5301-727a-4245-be88-ddd6ed6fcb62" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 77.22, + "elementName" : "Tap (77.22)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "217e8a3c-1b89-404d-99d9-777e71eee280" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "217e8a3c-1b89-404d-99d9-777e71eee280" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "217e8a3c-1b89-404d-99d9-777e71eee280" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "217e8a3c-1b89-404d-99d9-777e71eee280" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b7c65418-47c5-4f62-82de-0105d1038db8" + }, + "attachedElementGuid" : { + "value" : "217e8a3c-1b89-404d-99d9-777e71eee280" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b7c65418-47c5-4f62-82de-0105d1038db8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b7c65418-47c5-4f62-82de-0105d1038db8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b7c65418-47c5-4f62-82de-0105d1038db8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "b7c65418-47c5-4f62-82de-0105d1038db8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 77.38508, + "elementName" : "Tap (77.38508)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "53075e8a-1922-4c34-b230-eae0ddcd7419" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "53075e8a-1922-4c34-b230-eae0ddcd7419" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "53075e8a-1922-4c34-b230-eae0ddcd7419" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "53075e8a-1922-4c34-b230-eae0ddcd7419" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d0636770-0f89-4881-8af3-8939d6f2189e" + }, + "attachedElementGuid" : { + "value" : "53075e8a-1922-4c34-b230-eae0ddcd7419" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d0636770-0f89-4881-8af3-8939d6f2189e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d0636770-0f89-4881-8af3-8939d6f2189e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d0636770-0f89-4881-8af3-8939d6f2189e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d0636770-0f89-4881-8af3-8939d6f2189e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 77.55008, + "elementName" : "Tap (77.55008)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "507596d0-e94b-4d10-b8fb-a8f947bc2826" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "507596d0-e94b-4d10-b8fb-a8f947bc2826" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "507596d0-e94b-4d10-b8fb-a8f947bc2826" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "507596d0-e94b-4d10-b8fb-a8f947bc2826" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "08d63148-e89e-4864-89a3-583c5f9eec2a" + }, + "attachedElementGuid" : { + "value" : "507596d0-e94b-4d10-b8fb-a8f947bc2826" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "08d63148-e89e-4864-89a3-583c5f9eec2a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "08d63148-e89e-4864-89a3-583c5f9eec2a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "08d63148-e89e-4864-89a3-583c5f9eec2a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "08d63148-e89e-4864-89a3-583c5f9eec2a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 77.71508, + "elementName" : "Tap (77.71508)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "799bd184-1cb6-4e06-bbcc-fe9656328d09" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "799bd184-1cb6-4e06-bbcc-fe9656328d09" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "799bd184-1cb6-4e06-bbcc-fe9656328d09" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "799bd184-1cb6-4e06-bbcc-fe9656328d09" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "07b80fb2-7153-472b-9958-741731f043b5" + }, + "attachedElementGuid" : { + "value" : "799bd184-1cb6-4e06-bbcc-fe9656328d09" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "07b80fb2-7153-472b-9958-741731f043b5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "07b80fb2-7153-472b-9958-741731f043b5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "07b80fb2-7153-472b-9958-741731f043b5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "07b80fb2-7153-472b-9958-741731f043b5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 77.88008, + "elementName" : "Tap (77.88008)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "af0fcb32-86a9-4337-b627-8e8ffa11fb08" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "af0fcb32-86a9-4337-b627-8e8ffa11fb08" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "af0fcb32-86a9-4337-b627-8e8ffa11fb08" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "af0fcb32-86a9-4337-b627-8e8ffa11fb08" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4915034e-5e76-40f9-b647-f4a99317ae16" + }, + "attachedElementGuid" : { + "value" : "af0fcb32-86a9-4337-b627-8e8ffa11fb08" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4915034e-5e76-40f9-b647-f4a99317ae16" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4915034e-5e76-40f9-b647-f4a99317ae16" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4915034e-5e76-40f9-b647-f4a99317ae16" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "4915034e-5e76-40f9-b647-f4a99317ae16" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 78.04508, + "elementName" : "Tap (78.04508)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "87bbabee-a7f0-49a5-b775-f1d870ccebfb" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "87bbabee-a7f0-49a5-b775-f1d870ccebfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "87bbabee-a7f0-49a5-b775-f1d870ccebfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "87bbabee-a7f0-49a5-b775-f1d870ccebfb" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4ed3c882-45e3-46d2-89a4-a9eb8568cf5f" + }, + "attachedElementGuid" : { + "value" : "87bbabee-a7f0-49a5-b775-f1d870ccebfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4ed3c882-45e3-46d2-89a4-a9eb8568cf5f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4ed3c882-45e3-46d2-89a4-a9eb8568cf5f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4ed3c882-45e3-46d2-89a4-a9eb8568cf5f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "4ed3c882-45e3-46d2-89a4-a9eb8568cf5f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 78.21008, + "elementName" : "Tap (78.21008)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "39d7e689-94e8-4013-95bf-f4796c37dd0c" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "39d7e689-94e8-4013-95bf-f4796c37dd0c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "39d7e689-94e8-4013-95bf-f4796c37dd0c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "39d7e689-94e8-4013-95bf-f4796c37dd0c" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f9f54b90-2c50-42cc-9105-352c119cdfa6" + }, + "attachedElementGuid" : { + "value" : "39d7e689-94e8-4013-95bf-f4796c37dd0c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f9f54b90-2c50-42cc-9105-352c119cdfa6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f9f54b90-2c50-42cc-9105-352c119cdfa6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f9f54b90-2c50-42cc-9105-352c119cdfa6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "f9f54b90-2c50-42cc-9105-352c119cdfa6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 78.3750839, + "elementName" : "Tap (78.37508)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2edc1dd0-fae5-4c69-8833-dfa71fbd328d" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2edc1dd0-fae5-4c69-8833-dfa71fbd328d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "2edc1dd0-fae5-4c69-8833-dfa71fbd328d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "2edc1dd0-fae5-4c69-8833-dfa71fbd328d" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9044b65c-a4d2-4d36-a496-385d9abded84" + }, + "attachedElementGuid" : { + "value" : "2edc1dd0-fae5-4c69-8833-dfa71fbd328d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9044b65c-a4d2-4d36-a496-385d9abded84" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9044b65c-a4d2-4d36-a496-385d9abded84" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "9044b65c-a4d2-4d36-a496-385d9abded84" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "9044b65c-a4d2-4d36-a496-385d9abded84" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Flick_BM,Assembly-CSharp", + "availableFlickDirections" : [ + + ], + "exactJudgeTime" : 78.5400848, + "elementName" : "Flick (78.54008)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5200742d-8bb7-47f5-86a3-d3b015e5d697" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5200742d-8bb7-47f5-86a3-d3b015e5d697" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "5200742d-8bb7-47f5-86a3-d3b015e5d697" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "5200742d-8bb7-47f5-86a3-d3b015e5d697" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualFlick", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e9050024-a1a3-41a3-b669-42f65207b9d4" + }, + "attachedElementGuid" : { + "value" : "5200742d-8bb7-47f5-86a3-d3b015e5d697" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 45 + }, + "originalScale" : { + "x" : 1.7, + "y" : 1.7, + "z" : 1.7 + }, + "attachedElementGuid" : { + "value" : "e9050024-a1a3-41a3-b669-42f65207b9d4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e9050024-a1a3-41a3-b669-42f65207b9d4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e9050024-a1a3-41a3-b669-42f65207b9d4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "e9050024-a1a3-41a3-b669-42f65207b9d4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 78.5400848, + "elementName" : "Tap (78.54008)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "527eafc1-2f51-4c23-88a9-1e7a1a004625" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "527eafc1-2f51-4c23-88a9-1e7a1a004625" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "527eafc1-2f51-4c23-88a9-1e7a1a004625" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "527eafc1-2f51-4c23-88a9-1e7a1a004625" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "348b4ac3-2564-4c78-a188-73f158436ec3" + }, + "attachedElementGuid" : { + "value" : "527eafc1-2f51-4c23-88a9-1e7a1a004625" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "348b4ac3-2564-4c78-a188-73f158436ec3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "348b4ac3-2564-4c78-a188-73f158436ec3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "348b4ac3-2564-4c78-a188-73f158436ec3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "348b4ac3-2564-4c78-a188-73f158436ec3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 78.64965, + "elementName" : "Stay (78.64965)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4d657585-8bbd-4247-ab99-268177fe32bf" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4d657585-8bbd-4247-ab99-268177fe32bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "4d657585-8bbd-4247-ab99-268177fe32bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "4d657585-8bbd-4247-ab99-268177fe32bf" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0560e2a2-dba7-432a-b1cb-4fa7b5091835" + }, + "attachedElementGuid" : { + "value" : "4d657585-8bbd-4247-ab99-268177fe32bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0560e2a2-dba7-432a-b1cb-4fa7b5091835" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0560e2a2-dba7-432a-b1cb-4fa7b5091835" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0560e2a2-dba7-432a-b1cb-4fa7b5091835" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "0560e2a2-dba7-432a-b1cb-4fa7b5091835" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 78.75965, + "elementName" : "Stay (78.75965)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "712ebeb5-ee2c-429e-9d60-73636bf95226" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "712ebeb5-ee2c-429e-9d60-73636bf95226" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "712ebeb5-ee2c-429e-9d60-73636bf95226" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "712ebeb5-ee2c-429e-9d60-73636bf95226" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f533a57a-9b69-4e08-9d06-20776a00632c" + }, + "attachedElementGuid" : { + "value" : "712ebeb5-ee2c-429e-9d60-73636bf95226" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f533a57a-9b69-4e08-9d06-20776a00632c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f533a57a-9b69-4e08-9d06-20776a00632c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f533a57a-9b69-4e08-9d06-20776a00632c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "f533a57a-9b69-4e08-9d06-20776a00632c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 78.86965, + "elementName" : "Tap (78.86965)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c469c7c6-ef48-481f-82c9-3bd2b85d517a" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c469c7c6-ef48-481f-82c9-3bd2b85d517a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "c469c7c6-ef48-481f-82c9-3bd2b85d517a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "c469c7c6-ef48-481f-82c9-3bd2b85d517a" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c947520b-a9d4-4188-8a2b-6bf13d951d1e" + }, + "attachedElementGuid" : { + "value" : "c469c7c6-ef48-481f-82c9-3bd2b85d517a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c947520b-a9d4-4188-8a2b-6bf13d951d1e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c947520b-a9d4-4188-8a2b-6bf13d951d1e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c947520b-a9d4-4188-8a2b-6bf13d951d1e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "c947520b-a9d4-4188-8a2b-6bf13d951d1e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 78.86965, + "elementName" : "Stay (78.86965)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7da45f89-c70b-44f9-9119-14be8ce976fb" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7da45f89-c70b-44f9-9119-14be8ce976fb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "7da45f89-c70b-44f9-9119-14be8ce976fb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "7da45f89-c70b-44f9-9119-14be8ce976fb" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d4a803e0-d56c-494b-b787-603ce9c326e3" + }, + "attachedElementGuid" : { + "value" : "7da45f89-c70b-44f9-9119-14be8ce976fb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d4a803e0-d56c-494b-b787-603ce9c326e3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d4a803e0-d56c-494b-b787-603ce9c326e3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d4a803e0-d56c-494b-b787-603ce9c326e3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d4a803e0-d56c-494b-b787-603ce9c326e3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 78.9796448, + "elementName" : "Stay (78.97964)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "781838b4-1871-45e1-88e5-9737a991d764" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "781838b4-1871-45e1-88e5-9737a991d764" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "781838b4-1871-45e1-88e5-9737a991d764" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "781838b4-1871-45e1-88e5-9737a991d764" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "14fd736e-87af-454c-8b7c-fdc420b7d3d9" + }, + "attachedElementGuid" : { + "value" : "781838b4-1871-45e1-88e5-9737a991d764" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "14fd736e-87af-454c-8b7c-fdc420b7d3d9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "14fd736e-87af-454c-8b7c-fdc420b7d3d9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "14fd736e-87af-454c-8b7c-fdc420b7d3d9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "14fd736e-87af-454c-8b7c-fdc420b7d3d9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 79.0896454, + "elementName" : "Stay (79.08965)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "345fe4f7-ef9a-45ec-a8d5-e2bb22b86b81" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "345fe4f7-ef9a-45ec-a8d5-e2bb22b86b81" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "345fe4f7-ef9a-45ec-a8d5-e2bb22b86b81" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "345fe4f7-ef9a-45ec-a8d5-e2bb22b86b81" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f0a282ed-d141-4911-99bf-423fe0b920dd" + }, + "attachedElementGuid" : { + "value" : "345fe4f7-ef9a-45ec-a8d5-e2bb22b86b81" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f0a282ed-d141-4911-99bf-423fe0b920dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f0a282ed-d141-4911-99bf-423fe0b920dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f0a282ed-d141-4911-99bf-423fe0b920dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "f0a282ed-d141-4911-99bf-423fe0b920dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 79.2, + "elementName" : "Stay (79.2)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "aa695ca6-3b97-4cc3-9973-521061e4aece" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "aa695ca6-3b97-4cc3-9973-521061e4aece" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "aa695ca6-3b97-4cc3-9973-521061e4aece" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "aa695ca6-3b97-4cc3-9973-521061e4aece" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7c0e56b0-e15d-47b8-862e-93df53ced608" + }, + "attachedElementGuid" : { + "value" : "aa695ca6-3b97-4cc3-9973-521061e4aece" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7c0e56b0-e15d-47b8-862e-93df53ced608" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7c0e56b0-e15d-47b8-862e-93df53ced608" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "7c0e56b0-e15d-47b8-862e-93df53ced608" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "7c0e56b0-e15d-47b8-862e-93df53ced608" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 79.2, + "elementName" : "Tap (79.2)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3f635f46-7499-4a1e-836f-4762eb7cfe55" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3f635f46-7499-4a1e-836f-4762eb7cfe55" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "3f635f46-7499-4a1e-836f-4762eb7cfe55" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "3f635f46-7499-4a1e-836f-4762eb7cfe55" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ec33898b-4487-4912-a4cb-9479e0db1dc4" + }, + "attachedElementGuid" : { + "value" : "3f635f46-7499-4a1e-836f-4762eb7cfe55" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ec33898b-4487-4912-a4cb-9479e0db1dc4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ec33898b-4487-4912-a4cb-9479e0db1dc4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ec33898b-4487-4912-a4cb-9479e0db1dc4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "ec33898b-4487-4912-a4cb-9479e0db1dc4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 79.2825851, + "elementName" : "Stay (79.28259)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3b7a1b36-64bc-46b8-b31f-13dbecd58e6f" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3b7a1b36-64bc-46b8-b31f-13dbecd58e6f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "3b7a1b36-64bc-46b8-b31f-13dbecd58e6f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "3b7a1b36-64bc-46b8-b31f-13dbecd58e6f" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "25afb1e4-22e5-4fc0-9d62-194dcfee0ed7" + }, + "attachedElementGuid" : { + "value" : "3b7a1b36-64bc-46b8-b31f-13dbecd58e6f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "25afb1e4-22e5-4fc0-9d62-194dcfee0ed7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "25afb1e4-22e5-4fc0-9d62-194dcfee0ed7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "25afb1e4-22e5-4fc0-9d62-194dcfee0ed7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "25afb1e4-22e5-4fc0-9d62-194dcfee0ed7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 79.36508, + "elementName" : "Stay (79.36508)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c0c321ab-818f-4a27-bddd-07195d6798e0" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c0c321ab-818f-4a27-bddd-07195d6798e0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "c0c321ab-818f-4a27-bddd-07195d6798e0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "c0c321ab-818f-4a27-bddd-07195d6798e0" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0b0d0580-c5ae-45a8-973e-9adf1d0d24cd" + }, + "attachedElementGuid" : { + "value" : "c0c321ab-818f-4a27-bddd-07195d6798e0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0b0d0580-c5ae-45a8-973e-9adf1d0d24cd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0b0d0580-c5ae-45a8-973e-9adf1d0d24cd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0b0d0580-c5ae-45a8-973e-9adf1d0d24cd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "0b0d0580-c5ae-45a8-973e-9adf1d0d24cd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 79.44758, + "elementName" : "Stay (79.44758)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5be8b730-4e56-459f-9169-ef294804ef21" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5be8b730-4e56-459f-9169-ef294804ef21" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "5be8b730-4e56-459f-9169-ef294804ef21" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "5be8b730-4e56-459f-9169-ef294804ef21" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c1a96b8c-0d17-4d2b-83c1-4be6730adfb7" + }, + "attachedElementGuid" : { + "value" : "5be8b730-4e56-459f-9169-ef294804ef21" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c1a96b8c-0d17-4d2b-83c1-4be6730adfb7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c1a96b8c-0d17-4d2b-83c1-4be6730adfb7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c1a96b8c-0d17-4d2b-83c1-4be6730adfb7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "c1a96b8c-0d17-4d2b-83c1-4be6730adfb7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Flick_BM,Assembly-CSharp", + "availableFlickDirections" : [ + + ], + "exactJudgeTime" : 79.53008, + "elementName" : "Flick (79.53008)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "86aa9d3e-9169-405b-a843-65b25ffbc91c" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "86aa9d3e-9169-405b-a843-65b25ffbc91c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "86aa9d3e-9169-405b-a843-65b25ffbc91c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "86aa9d3e-9169-405b-a843-65b25ffbc91c" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualFlick", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "21d10e5f-fa4b-4285-8460-403eeea43e9c" + }, + "attachedElementGuid" : { + "value" : "86aa9d3e-9169-405b-a843-65b25ffbc91c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1.7, + "y" : 1.7, + "z" : 1.7 + }, + "attachedElementGuid" : { + "value" : "21d10e5f-fa4b-4285-8460-403eeea43e9c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "21d10e5f-fa4b-4285-8460-403eeea43e9c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "21d10e5f-fa4b-4285-8460-403eeea43e9c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "21d10e5f-fa4b-4285-8460-403eeea43e9c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp", + "elementName" : "Rain(0,-15,60)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d5eedb70-1de4-4e02-a010-638dbc359679" + }, + "attachedElementGuid" : { + "value" : "5e342b24-6e97-4bda-85aa-cccb3058bc0b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : -15, + "z" : 60 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d5eedb70-1de4-4e02-a010-638dbc359679" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d5eedb70-1de4-4e02-a010-638dbc359679" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "r1", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e0d579e8-d601-4bca-9340-c06c2d353cec" + }, + "attachedElementGuid" : { + "value" : "d5eedb70-1de4-4e02-a010-638dbc359679" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 180 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e0d579e8-d601-4bca-9340-c06c2d353cec" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e0d579e8-d601-4bca-9340-c06c2d353cec" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 0, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "e0d579e8-d601-4bca-9340-c06c2d353cec" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 0, + "trackEndTime" : 3, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "e0d579e8-d601-4bca-9340-c06c2d353cec" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bd353f11-f256-403e-836e-d7a828b0e967" + }, + "attachedElementGuid" : { + "value" : "e0d579e8-d601-4bca-9340-c06c2d353cec" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -3, + "y" : 30, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "bd353f11-f256-403e-836e-d7a828b0e967" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bd353f11-f256-403e-836e-d7a828b0e967" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "bd353f11-f256-403e-836e-d7a828b0e967" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bc8050f1-32f7-47f9-869c-9fc12689987d" + }, + "attachedElementGuid" : { + "value" : "e0d579e8-d601-4bca-9340-c06c2d353cec" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "bc8050f1-32f7-47f9-869c-9fc12689987d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bc8050f1-32f7-47f9-869c-9fc12689987d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "bc8050f1-32f7-47f9-869c-9fc12689987d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ParticleTracker_BM,Assembly-CSharp", + "prewarm" : false, + "playTime" : 41, + "stopTime" : 52, + "is3D" : true, + "width" : 40, + "extendDirection" : { + "x" : 2, + "y" : 0, + "z" : 8 + }, + "density" : 30, + "lifeTime" : 3, + "isAutoOrient" : false, + "particleRotation" : { + "x" : 0, + "y" : 0, + "z" : -10 + }, + "materialThemeBundleName" : "basic", + "materialName" : "Basic_Track_Segments", + "elementName" : "New Particle Tracker", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a9bd45f6-83ae-47c8-823d-ebab866575b4" + }, + "attachedElementGuid" : { + "value" : "e0d579e8-d601-4bca-9340-c06c2d353cec" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0.3858937, + "g" : 0.4940961, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "a9bd45f6-83ae-47c8-823d-ebab866575b4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "r2", + "tags" : [ + + ], + "elementGuid" : { + "value" : "640181a3-1bd7-4a23-a80d-9b55d3ccb0bf" + }, + "attachedElementGuid" : { + "value" : "d5eedb70-1de4-4e02-a010-638dbc359679" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 540 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "640181a3-1bd7-4a23-a80d-9b55d3ccb0bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "640181a3-1bd7-4a23-a80d-9b55d3ccb0bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 0, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "640181a3-1bd7-4a23-a80d-9b55d3ccb0bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 0, + "trackEndTime" : 3, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "640181a3-1bd7-4a23-a80d-9b55d3ccb0bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "504df61a-b3c1-417f-9ed5-1c427cce24b3" + }, + "attachedElementGuid" : { + "value" : "640181a3-1bd7-4a23-a80d-9b55d3ccb0bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -3, + "y" : 30, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "504df61a-b3c1-417f-9ed5-1c427cce24b3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "504df61a-b3c1-417f-9ed5-1c427cce24b3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "504df61a-b3c1-417f-9ed5-1c427cce24b3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "118e04d1-0789-49d0-ba9d-f37ef2be0a50" + }, + "attachedElementGuid" : { + "value" : "640181a3-1bd7-4a23-a80d-9b55d3ccb0bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "118e04d1-0789-49d0-ba9d-f37ef2be0a50" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "118e04d1-0789-49d0-ba9d-f37ef2be0a50" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "118e04d1-0789-49d0-ba9d-f37ef2be0a50" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ParticleTracker_BM,Assembly-CSharp", + "prewarm" : false, + "playTime" : 48, + "stopTime" : 60, + "is3D" : true, + "width" : 40, + "extendDirection" : { + "x" : 2, + "y" : 0, + "z" : 8 + }, + "density" : 30, + "lifeTime" : 3, + "isAutoOrient" : false, + "particleRotation" : { + "x" : 0, + "y" : 0, + "z" : -10 + }, + "materialThemeBundleName" : "basic", + "materialName" : "Basic_Track_Segments", + "elementName" : "New Particle Tracker", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f88cb3c4-8f53-4cd1-a5c4-b15636d8662f" + }, + "attachedElementGuid" : { + "value" : "640181a3-1bd7-4a23-a80d-9b55d3ccb0bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0.3858937, + "g" : 0.4940961, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "f88cb3c4-8f53-4cd1-a5c4-b15636d8662f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "r3", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e06126f3-96ff-47fc-acf4-73f2f9033aa2" + }, + "attachedElementGuid" : { + "value" : "d5eedb70-1de4-4e02-a010-638dbc359679" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 900 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e06126f3-96ff-47fc-acf4-73f2f9033aa2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e06126f3-96ff-47fc-acf4-73f2f9033aa2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 0, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "e06126f3-96ff-47fc-acf4-73f2f9033aa2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 0, + "trackEndTime" : 3, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "e06126f3-96ff-47fc-acf4-73f2f9033aa2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c437ac36-c582-4fc5-bb85-9b3096695223" + }, + "attachedElementGuid" : { + "value" : "e06126f3-96ff-47fc-acf4-73f2f9033aa2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -3, + "y" : 30, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c437ac36-c582-4fc5-bb85-9b3096695223" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c437ac36-c582-4fc5-bb85-9b3096695223" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c437ac36-c582-4fc5-bb85-9b3096695223" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "47c30379-b738-43c2-9dad-6900fcccb70a" + }, + "attachedElementGuid" : { + "value" : "e06126f3-96ff-47fc-acf4-73f2f9033aa2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "47c30379-b738-43c2-9dad-6900fcccb70a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "47c30379-b738-43c2-9dad-6900fcccb70a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "47c30379-b738-43c2-9dad-6900fcccb70a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ParticleTracker_BM,Assembly-CSharp", + "prewarm" : false, + "playTime" : 56, + "stopTime" : 68, + "is3D" : true, + "width" : 40, + "extendDirection" : { + "x" : 2, + "y" : 0, + "z" : 8 + }, + "density" : 30, + "lifeTime" : 3, + "isAutoOrient" : false, + "particleRotation" : { + "x" : 0, + "y" : 0, + "z" : -10 + }, + "materialThemeBundleName" : "basic", + "materialName" : "Basic_Track_Segments", + "elementName" : "New Particle Tracker", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0a172968-f8ef-4ee0-8b25-011b3de8e627" + }, + "attachedElementGuid" : { + "value" : "e06126f3-96ff-47fc-acf4-73f2f9033aa2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0.3858937, + "g" : 0.4940961, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "0a172968-f8ef-4ee0-8b25-011b3de8e627" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "r4", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f06228a4-11f8-4671-912e-034fec76f297" + }, + "attachedElementGuid" : { + "value" : "d5eedb70-1de4-4e02-a010-638dbc359679" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 1260 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f06228a4-11f8-4671-912e-034fec76f297" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f06228a4-11f8-4671-912e-034fec76f297" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 0, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "f06228a4-11f8-4671-912e-034fec76f297" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 0, + "trackEndTime" : 3, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "f06228a4-11f8-4671-912e-034fec76f297" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7458c785-dfbe-40e6-98fe-477b95aba851" + }, + "attachedElementGuid" : { + "value" : "f06228a4-11f8-4671-912e-034fec76f297" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -3, + "y" : 30, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7458c785-dfbe-40e6-98fe-477b95aba851" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7458c785-dfbe-40e6-98fe-477b95aba851" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "7458c785-dfbe-40e6-98fe-477b95aba851" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "230b1b00-8165-4ae9-8db1-f5d1d9fcec40" + }, + "attachedElementGuid" : { + "value" : "f06228a4-11f8-4671-912e-034fec76f297" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "230b1b00-8165-4ae9-8db1-f5d1d9fcec40" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "230b1b00-8165-4ae9-8db1-f5d1d9fcec40" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "230b1b00-8165-4ae9-8db1-f5d1d9fcec40" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ParticleTracker_BM,Assembly-CSharp", + "prewarm" : false, + "playTime" : 64, + "stopTime" : 76, + "is3D" : true, + "width" : 40, + "extendDirection" : { + "x" : 2, + "y" : 0, + "z" : 8 + }, + "density" : 30, + "lifeTime" : 3, + "isAutoOrient" : false, + "particleRotation" : { + "x" : 0, + "y" : 0, + "z" : -10 + }, + "materialThemeBundleName" : "basic", + "materialName" : "Basic_Track_Segments", + "elementName" : "New Particle Tracker", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3f1726ba-2f8a-476b-84d5-d1f24ac8a4b7" + }, + "attachedElementGuid" : { + "value" : "f06228a4-11f8-4671-912e-034fec76f297" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0.3858937, + "g" : 0.4940961, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "3f1726ba-2f8a-476b-84d5-d1f24ac8a4b7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp", + "elementName" : "P5{79.53-98.34}(0,0,2894)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f25ebce5-28ba-4585-8075-4a6e847ce93d" + }, + "attachedElementGuid" : { + "value" : "00000000-0000-0000-0000-000000000000" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 2894 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f25ebce5-28ba-4585-8075-4a6e847ce93d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f25ebce5-28ba-4585-8075-4a6e847ce93d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "Note", + "tags" : [ + + ], + "elementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + }, + "attachedElementGuid" : { + "value" : "f25ebce5-28ba-4585-8075-4a6e847ce93d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 0, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 79.53, + "trackEndTime" : 98.34, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1829a2aa-9cbd-4c8e-947f-11087ff6ceff" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "1829a2aa-9cbd-4c8e-947f-11087ff6ceff" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1829a2aa-9cbd-4c8e-947f-11087ff6ceff" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "1829a2aa-9cbd-4c8e-947f-11087ff6ceff" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "083c0a62-8659-4637-a4f6-bd6e3b5abdea" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 855 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "083c0a62-8659-4637-a4f6-bd6e3b5abdea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "083c0a62-8659-4637-a4f6-bd6e3b5abdea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "083c0a62-8659-4637-a4f6-bd6e3b5abdea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "39d1c5ca-13be-4afd-97a2-b35a47c53bd4" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "39d1c5ca-13be-4afd-97a2-b35a47c53bd4" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + { + "startValue" : 95.37, + "endValue" : 1, + "startTime" : 79.53, + "endTime" : 1, + "animationCurveType" : 0 + },{ + "startValue" : 98.34, + "endValue" : 0, + "startTime" : 95.37, + "endTime" : 0, + "animationCurveType" : 0 + } + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 79.53 + },{ + "value" : false, + "time" : 95.37 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + { + "startValue" : 79.53, + "endValue" : 5, + "startTime" : 47.85, + "endTime" : 5, + "animationCurveType" : 0 + } + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "17681fc1-b66a-48c9-ad44-ef53c9fc6480" + }, + "attachedElementGuid" : { + "value" : "39d1c5ca-13be-4afd-97a2-b35a47c53bd4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "17681fc1-b66a-48c9-ad44-ef53c9fc6480" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "17681fc1-b66a-48c9-ad44-ef53c9fc6480" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0.3965093, + "g" : 0.497728825, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "17681fc1-b66a-48c9-ad44-ef53c9fc6480" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "79.53-98.34", + "tags" : [ + + ], + "elementGuid" : { + "value" : "668346c2-8d63-490f-8e15-ecb93fbf1def" + }, + "attachedElementGuid" : { + "value" : "f090c03d-7b08-4ec2-94d5-6e4baa1c4af1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "668346c2-8d63-490f-8e15-ecb93fbf1def" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "668346c2-8d63-490f-8e15-ecb93fbf1def" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 0, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "668346c2-8d63-490f-8e15-ecb93fbf1def" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 79.53, + "trackEndTime" : 98.34, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "668346c2-8d63-490f-8e15-ecb93fbf1def" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "633452e2-03d6-4276-a674-f51bb711e2af" + }, + "attachedElementGuid" : { + "value" : "668346c2-8d63-490f-8e15-ecb93fbf1def" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 2887.5 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "633452e2-03d6-4276-a674-f51bb711e2af" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "633452e2-03d6-4276-a674-f51bb711e2af" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "633452e2-03d6-4276-a674-f51bb711e2af" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7f273fc4-e742-472c-acf4-e95f0fe0676a" + }, + "attachedElementGuid" : { + "value" : "668346c2-8d63-490f-8e15-ecb93fbf1def" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 3742.5 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7f273fc4-e742-472c-acf4-e95f0fe0676a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7f273fc4-e742-472c-acf4-e95f0fe0676a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "7f273fc4-e742-472c-acf4-e95f0fe0676a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 79.8600845, + "elementName" : "Stay (79.86008)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fce69aad-1581-4ace-8146-446056d0c803" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fce69aad-1581-4ace-8146-446056d0c803" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "fce69aad-1581-4ace-8146-446056d0c803" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "fce69aad-1581-4ace-8146-446056d0c803" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a0ce1c57-43b1-414d-9746-d1afa8cb074e" + }, + "attachedElementGuid" : { + "value" : "fce69aad-1581-4ace-8146-446056d0c803" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a0ce1c57-43b1-414d-9746-d1afa8cb074e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a0ce1c57-43b1-414d-9746-d1afa8cb074e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a0ce1c57-43b1-414d-9746-d1afa8cb074e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "a0ce1c57-43b1-414d-9746-d1afa8cb074e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 80.0250854, + "elementName" : "Stay (80.02509)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d127cf32-7329-46f2-a646-8629d2a8f1af" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d127cf32-7329-46f2-a646-8629d2a8f1af" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "d127cf32-7329-46f2-a646-8629d2a8f1af" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "d127cf32-7329-46f2-a646-8629d2a8f1af" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f20e4648-6976-45e2-b8f4-185ad98b9b59" + }, + "attachedElementGuid" : { + "value" : "d127cf32-7329-46f2-a646-8629d2a8f1af" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f20e4648-6976-45e2-b8f4-185ad98b9b59" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f20e4648-6976-45e2-b8f4-185ad98b9b59" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f20e4648-6976-45e2-b8f4-185ad98b9b59" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "f20e4648-6976-45e2-b8f4-185ad98b9b59" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 80.19009, + "elementName" : "Stay (80.19009)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f9368869-a94f-486b-9da0-6dda6824daa9" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f9368869-a94f-486b-9da0-6dda6824daa9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "f9368869-a94f-486b-9da0-6dda6824daa9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "f9368869-a94f-486b-9da0-6dda6824daa9" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7b65cc45-5d32-4244-9c1b-f1987d1cc886" + }, + "attachedElementGuid" : { + "value" : "f9368869-a94f-486b-9da0-6dda6824daa9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7b65cc45-5d32-4244-9c1b-f1987d1cc886" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7b65cc45-5d32-4244-9c1b-f1987d1cc886" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "7b65cc45-5d32-4244-9c1b-f1987d1cc886" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "7b65cc45-5d32-4244-9c1b-f1987d1cc886" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 80.52008, + "elementName" : "Tap (80.52008)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1715e318-1789-45d6-9d7d-fcd5f32f3bac" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1715e318-1789-45d6-9d7d-fcd5f32f3bac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "1715e318-1789-45d6-9d7d-fcd5f32f3bac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "1715e318-1789-45d6-9d7d-fcd5f32f3bac" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "67b5a3c0-3bca-4a2a-9b51-38e6a0968b4f" + }, + "attachedElementGuid" : { + "value" : "1715e318-1789-45d6-9d7d-fcd5f32f3bac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "67b5a3c0-3bca-4a2a-9b51-38e6a0968b4f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "67b5a3c0-3bca-4a2a-9b51-38e6a0968b4f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "67b5a3c0-3bca-4a2a-9b51-38e6a0968b4f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "67b5a3c0-3bca-4a2a-9b51-38e6a0968b4f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeEffectsCollection_BM,Assembly-CSharp", + "time" : 79.02, + "elementName" : "New Time Effects Collection", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9244486e-a67b-4c95-a2d6-cccf4ec1fdda" + }, + "attachedElementGuid" : { + "value" : "67b5a3c0-3bca-4a2a-9b51-38e6a0968b4f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9244486e-a67b-4c95-a2d6-cccf4ec1fdda" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Prior":[ + + ],"Default":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMRippleEffect_BM,Assembly-CSharp", + "rippleTime" : 2, + "positionOffset" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "eulerAngles" : { + "x" : -10, + "y" : 0, + "z" : 0 + }, + "scale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "emissionColor" : { + "r" : 0.5, + "g" : 0.7, + "b" : 1, + "a" : 1 + }, + "emissionIntensity" : 1, + "effectTime" : 0 + } + ],"Late":[ + + ] + }, + "attachedElementGuid" : { + "value" : "9244486e-a67b-4c95-a2d6-cccf4ec1fdda" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 80.85008, + "elementName" : "Stay (80.85008)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4c2e27c9-6e22-4784-924d-c05f45bab040" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4c2e27c9-6e22-4784-924d-c05f45bab040" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "4c2e27c9-6e22-4784-924d-c05f45bab040" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "4c2e27c9-6e22-4784-924d-c05f45bab040" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "769f182f-3260-4717-8d42-dc2882344fe8" + }, + "attachedElementGuid" : { + "value" : "4c2e27c9-6e22-4784-924d-c05f45bab040" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "769f182f-3260-4717-8d42-dc2882344fe8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "769f182f-3260-4717-8d42-dc2882344fe8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "769f182f-3260-4717-8d42-dc2882344fe8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "769f182f-3260-4717-8d42-dc2882344fe8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 81.01508, + "elementName" : "Stay (81.01508)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8e770b4a-0a28-43d0-9083-58e1a539c6b3" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8e770b4a-0a28-43d0-9083-58e1a539c6b3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "8e770b4a-0a28-43d0-9083-58e1a539c6b3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "8e770b4a-0a28-43d0-9083-58e1a539c6b3" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "370eb962-4ccd-48aa-b261-57958017b71c" + }, + "attachedElementGuid" : { + "value" : "8e770b4a-0a28-43d0-9083-58e1a539c6b3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "370eb962-4ccd-48aa-b261-57958017b71c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "370eb962-4ccd-48aa-b261-57958017b71c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "370eb962-4ccd-48aa-b261-57958017b71c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "370eb962-4ccd-48aa-b261-57958017b71c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 81.1800842, + "elementName" : "Stay (81.18008)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f3e29b33-683c-45f1-8b59-95d7cabf75f8" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f3e29b33-683c-45f1-8b59-95d7cabf75f8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "f3e29b33-683c-45f1-8b59-95d7cabf75f8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "f3e29b33-683c-45f1-8b59-95d7cabf75f8" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5b727b2f-ea76-4901-ae2d-64b537dd5472" + }, + "attachedElementGuid" : { + "value" : "f3e29b33-683c-45f1-8b59-95d7cabf75f8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5b727b2f-ea76-4901-ae2d-64b537dd5472" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5b727b2f-ea76-4901-ae2d-64b537dd5472" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5b727b2f-ea76-4901-ae2d-64b537dd5472" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "5b727b2f-ea76-4901-ae2d-64b537dd5472" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 81.5110245, + "elementName" : "Tap (81.51102)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b5138d40-7323-4efa-861d-b557ef438df0" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b5138d40-7323-4efa-861d-b557ef438df0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "b5138d40-7323-4efa-861d-b557ef438df0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "b5138d40-7323-4efa-861d-b557ef438df0" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8bf7326f-6884-4b5e-a2db-45c3ecf762ac" + }, + "attachedElementGuid" : { + "value" : "b5138d40-7323-4efa-861d-b557ef438df0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8bf7326f-6884-4b5e-a2db-45c3ecf762ac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8bf7326f-6884-4b5e-a2db-45c3ecf762ac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8bf7326f-6884-4b5e-a2db-45c3ecf762ac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "8bf7326f-6884-4b5e-a2db-45c3ecf762ac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeEffectsCollection_BM,Assembly-CSharp", + "time" : 80.011, + "elementName" : "New Time Effects Collection", + "tags" : [ + + ], + "elementGuid" : { + "value" : "628c8be9-65b4-4073-9040-57c6d7392dd9" + }, + "attachedElementGuid" : { + "value" : "8bf7326f-6884-4b5e-a2db-45c3ecf762ac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "628c8be9-65b4-4073-9040-57c6d7392dd9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Prior":[ + + ],"Default":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMRippleEffect_BM,Assembly-CSharp", + "rippleTime" : 2, + "positionOffset" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "eulerAngles" : { + "x" : -10, + "y" : 0, + "z" : 0 + }, + "scale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "emissionColor" : { + "r" : 0.5, + "g" : 0.7, + "b" : 1, + "a" : 1 + }, + "emissionIntensity" : 1, + "effectTime" : 0 + } + ],"Late":[ + + ] + }, + "attachedElementGuid" : { + "value" : "628c8be9-65b4-4073-9040-57c6d7392dd9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 81.42758, + "elementName" : "Stay (81.42758)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4ea8009b-83eb-4013-8cc9-b1832ba07744" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4ea8009b-83eb-4013-8cc9-b1832ba07744" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "4ea8009b-83eb-4013-8cc9-b1832ba07744" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "4ea8009b-83eb-4013-8cc9-b1832ba07744" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9a156909-5164-4f53-963c-4e9cda4545cf" + }, + "attachedElementGuid" : { + "value" : "4ea8009b-83eb-4013-8cc9-b1832ba07744" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9a156909-5164-4f53-963c-4e9cda4545cf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9a156909-5164-4f53-963c-4e9cda4545cf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "9a156909-5164-4f53-963c-4e9cda4545cf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "9a156909-5164-4f53-963c-4e9cda4545cf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 81.67509, + "elementName" : "Stay (81.67509)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "416ee447-577c-49ea-832d-7941ad5484e9" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "416ee447-577c-49ea-832d-7941ad5484e9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "416ee447-577c-49ea-832d-7941ad5484e9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "416ee447-577c-49ea-832d-7941ad5484e9" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4412619d-0224-48b5-b97c-4f583b42dcce" + }, + "attachedElementGuid" : { + "value" : "416ee447-577c-49ea-832d-7941ad5484e9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4412619d-0224-48b5-b97c-4f583b42dcce" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4412619d-0224-48b5-b97c-4f583b42dcce" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4412619d-0224-48b5-b97c-4f583b42dcce" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "4412619d-0224-48b5-b97c-4f583b42dcce" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 81.83961, + "elementName" : "Stay (81.83961)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0f612288-ab8d-445b-91c4-b8424574e409" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0f612288-ab8d-445b-91c4-b8424574e409" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "0f612288-ab8d-445b-91c4-b8424574e409" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "0f612288-ab8d-445b-91c4-b8424574e409" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b50eb8c8-d3e3-4208-8833-9d3d42336554" + }, + "attachedElementGuid" : { + "value" : "0f612288-ab8d-445b-91c4-b8424574e409" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b50eb8c8-d3e3-4208-8833-9d3d42336554" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b50eb8c8-d3e3-4208-8833-9d3d42336554" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b50eb8c8-d3e3-4208-8833-9d3d42336554" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "b50eb8c8-d3e3-4208-8833-9d3d42336554" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 81.94961, + "elementName" : "Stay (81.94961)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "36d5c1ac-1012-43b3-91d4-445c3518cc06" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "36d5c1ac-1012-43b3-91d4-445c3518cc06" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "36d5c1ac-1012-43b3-91d4-445c3518cc06" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "36d5c1ac-1012-43b3-91d4-445c3518cc06" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7ac6f2ed-2fff-493b-98c6-8ca0a60153b9" + }, + "attachedElementGuid" : { + "value" : "36d5c1ac-1012-43b3-91d4-445c3518cc06" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7ac6f2ed-2fff-493b-98c6-8ca0a60153b9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7ac6f2ed-2fff-493b-98c6-8ca0a60153b9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "7ac6f2ed-2fff-493b-98c6-8ca0a60153b9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "7ac6f2ed-2fff-493b-98c6-8ca0a60153b9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 82.0596, + "elementName" : "Stay (82.0596)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e9256d07-55ab-4e35-b5cf-168d11821778" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e9256d07-55ab-4e35-b5cf-168d11821778" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "e9256d07-55ab-4e35-b5cf-168d11821778" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "e9256d07-55ab-4e35-b5cf-168d11821778" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a828e095-da5b-4eb8-9927-d96de4267967" + }, + "attachedElementGuid" : { + "value" : "e9256d07-55ab-4e35-b5cf-168d11821778" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a828e095-da5b-4eb8-9927-d96de4267967" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a828e095-da5b-4eb8-9927-d96de4267967" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a828e095-da5b-4eb8-9927-d96de4267967" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "a828e095-da5b-4eb8-9927-d96de4267967" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 82.1696, + "elementName" : "Stay (82.1696)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5e832b76-99df-45ed-a65c-e1f027a645a3" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5e832b76-99df-45ed-a65c-e1f027a645a3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "5e832b76-99df-45ed-a65c-e1f027a645a3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "5e832b76-99df-45ed-a65c-e1f027a645a3" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "37b2ab98-9900-4f62-98ba-eeb79f21571b" + }, + "attachedElementGuid" : { + "value" : "5e832b76-99df-45ed-a65c-e1f027a645a3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "37b2ab98-9900-4f62-98ba-eeb79f21571b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "37b2ab98-9900-4f62-98ba-eeb79f21571b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "37b2ab98-9900-4f62-98ba-eeb79f21571b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "37b2ab98-9900-4f62-98ba-eeb79f21571b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 82.2796, + "elementName" : "Stay (82.2796)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d6521b72-c937-4e2d-96f0-1c93496e56e4" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d6521b72-c937-4e2d-96f0-1c93496e56e4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "d6521b72-c937-4e2d-96f0-1c93496e56e4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "d6521b72-c937-4e2d-96f0-1c93496e56e4" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f3b16c9b-c3cb-4323-ba92-ea0dc9dbfb18" + }, + "attachedElementGuid" : { + "value" : "d6521b72-c937-4e2d-96f0-1c93496e56e4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f3b16c9b-c3cb-4323-ba92-ea0dc9dbfb18" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f3b16c9b-c3cb-4323-ba92-ea0dc9dbfb18" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f3b16c9b-c3cb-4323-ba92-ea0dc9dbfb18" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "f3b16c9b-c3cb-4323-ba92-ea0dc9dbfb18" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 82.389595, + "elementName" : "Stay (82.3896)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c61e7874-087d-474d-b59f-589ee8e0aa7f" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c61e7874-087d-474d-b59f-589ee8e0aa7f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "c61e7874-087d-474d-b59f-589ee8e0aa7f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "c61e7874-087d-474d-b59f-589ee8e0aa7f" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "62ed674c-6a7a-4506-a065-968b04e0d0be" + }, + "attachedElementGuid" : { + "value" : "c61e7874-087d-474d-b59f-589ee8e0aa7f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "62ed674c-6a7a-4506-a065-968b04e0d0be" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "62ed674c-6a7a-4506-a065-968b04e0d0be" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "62ed674c-6a7a-4506-a065-968b04e0d0be" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "62ed674c-6a7a-4506-a065-968b04e0d0be" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 82.4995956, + "elementName" : "Tap (82.4996)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ba3bb3a9-e4eb-427d-b73d-d2b303940fba" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ba3bb3a9-e4eb-427d-b73d-d2b303940fba" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "ba3bb3a9-e4eb-427d-b73d-d2b303940fba" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "ba3bb3a9-e4eb-427d-b73d-d2b303940fba" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5e7498a2-2ad5-4034-b4b8-408e54a09797" + }, + "attachedElementGuid" : { + "value" : "ba3bb3a9-e4eb-427d-b73d-d2b303940fba" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5e7498a2-2ad5-4034-b4b8-408e54a09797" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5e7498a2-2ad5-4034-b4b8-408e54a09797" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5e7498a2-2ad5-4034-b4b8-408e54a09797" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "5e7498a2-2ad5-4034-b4b8-408e54a09797" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeEffectsCollection_BM,Assembly-CSharp", + "time" : 81, + "elementName" : "New Time Effects Collection", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6233d9ec-88fa-4055-b1b9-941585f837a4" + }, + "attachedElementGuid" : { + "value" : "5e7498a2-2ad5-4034-b4b8-408e54a09797" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6233d9ec-88fa-4055-b1b9-941585f837a4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Prior":[ + + ],"Default":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMRippleEffect_BM,Assembly-CSharp", + "rippleTime" : 2, + "positionOffset" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "eulerAngles" : { + "x" : -10, + "y" : 0, + "z" : 0 + }, + "scale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "emissionColor" : { + "r" : 0.5, + "g" : 0.7, + "b" : 1, + "a" : 1 + }, + "emissionIntensity" : 1, + "effectTime" : 0 + } + ],"Late":[ + + ] + }, + "attachedElementGuid" : { + "value" : "6233d9ec-88fa-4055-b1b9-941585f837a4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 82.6650848, + "elementName" : "Stay (82.66508)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3bfeaa51-a125-4f79-bdab-0c5dd22f52b3" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3bfeaa51-a125-4f79-bdab-0c5dd22f52b3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "3bfeaa51-a125-4f79-bdab-0c5dd22f52b3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "3bfeaa51-a125-4f79-bdab-0c5dd22f52b3" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3003aec3-3908-458a-9f61-84e97350d96a" + }, + "attachedElementGuid" : { + "value" : "3bfeaa51-a125-4f79-bdab-0c5dd22f52b3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3003aec3-3908-458a-9f61-84e97350d96a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3003aec3-3908-458a-9f61-84e97350d96a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3003aec3-3908-458a-9f61-84e97350d96a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "3003aec3-3908-458a-9f61-84e97350d96a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 82.8300858, + "elementName" : "Stay (82.83009)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "01c3c1ac-b3ca-4f2c-918f-55a2ceb67e70" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "01c3c1ac-b3ca-4f2c-918f-55a2ceb67e70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "01c3c1ac-b3ca-4f2c-918f-55a2ceb67e70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "01c3c1ac-b3ca-4f2c-918f-55a2ceb67e70" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cffd95dd-4b6f-44bb-966d-9ec35c10e8d8" + }, + "attachedElementGuid" : { + "value" : "01c3c1ac-b3ca-4f2c-918f-55a2ceb67e70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "cffd95dd-4b6f-44bb-966d-9ec35c10e8d8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "cffd95dd-4b6f-44bb-966d-9ec35c10e8d8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "cffd95dd-4b6f-44bb-966d-9ec35c10e8d8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "cffd95dd-4b6f-44bb-966d-9ec35c10e8d8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 82.99509, + "elementName" : "Stay (82.99509)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fd9e4f1b-6148-42a0-b86e-da7ba443383b" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fd9e4f1b-6148-42a0-b86e-da7ba443383b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "fd9e4f1b-6148-42a0-b86e-da7ba443383b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "fd9e4f1b-6148-42a0-b86e-da7ba443383b" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d19a998f-634d-4a88-977d-d490ba36cb22" + }, + "attachedElementGuid" : { + "value" : "fd9e4f1b-6148-42a0-b86e-da7ba443383b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d19a998f-634d-4a88-977d-d490ba36cb22" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d19a998f-634d-4a88-977d-d490ba36cb22" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d19a998f-634d-4a88-977d-d490ba36cb22" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d19a998f-634d-4a88-977d-d490ba36cb22" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 83.16009, + "elementName" : "Stay (83.16009)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ad85446f-1836-4ffb-bd8c-a0f3ae5c0094" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ad85446f-1836-4ffb-bd8c-a0f3ae5c0094" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "ad85446f-1836-4ffb-bd8c-a0f3ae5c0094" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "ad85446f-1836-4ffb-bd8c-a0f3ae5c0094" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "01fec1d3-676c-4ad5-ba3b-b9eae2e9295e" + }, + "attachedElementGuid" : { + "value" : "ad85446f-1836-4ffb-bd8c-a0f3ae5c0094" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "01fec1d3-676c-4ad5-ba3b-b9eae2e9295e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "01fec1d3-676c-4ad5-ba3b-b9eae2e9295e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "01fec1d3-676c-4ad5-ba3b-b9eae2e9295e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "01fec1d3-676c-4ad5-ba3b-b9eae2e9295e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 83.32509, + "elementName" : "Stay (83.32509)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6719f36b-3646-42ac-9928-2de815313a1c" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6719f36b-3646-42ac-9928-2de815313a1c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "6719f36b-3646-42ac-9928-2de815313a1c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "6719f36b-3646-42ac-9928-2de815313a1c" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "304f3f85-6f56-4d29-9cda-eec426d9b178" + }, + "attachedElementGuid" : { + "value" : "6719f36b-3646-42ac-9928-2de815313a1c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "304f3f85-6f56-4d29-9cda-eec426d9b178" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "304f3f85-6f56-4d29-9cda-eec426d9b178" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "304f3f85-6f56-4d29-9cda-eec426d9b178" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "304f3f85-6f56-4d29-9cda-eec426d9b178" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 83.49009, + "elementName" : "Tap (83.49009)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b7e644d2-2921-4eb6-a051-f26775ff71b0" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b7e644d2-2921-4eb6-a051-f26775ff71b0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "b7e644d2-2921-4eb6-a051-f26775ff71b0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "b7e644d2-2921-4eb6-a051-f26775ff71b0" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bc913fe7-72d8-429d-b4cc-61bcd02c983a" + }, + "attachedElementGuid" : { + "value" : "b7e644d2-2921-4eb6-a051-f26775ff71b0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "bc913fe7-72d8-429d-b4cc-61bcd02c983a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bc913fe7-72d8-429d-b4cc-61bcd02c983a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "bc913fe7-72d8-429d-b4cc-61bcd02c983a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "bc913fe7-72d8-429d-b4cc-61bcd02c983a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeEffectsCollection_BM,Assembly-CSharp", + "time" : 81.99, + "elementName" : "New Time Effects Collection", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ee84a401-dd4f-4310-8202-8dc216f63e3c" + }, + "attachedElementGuid" : { + "value" : "bc913fe7-72d8-429d-b4cc-61bcd02c983a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ee84a401-dd4f-4310-8202-8dc216f63e3c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Prior":[ + + ],"Default":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMRippleEffect_BM,Assembly-CSharp", + "rippleTime" : 2, + "positionOffset" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "eulerAngles" : { + "x" : -10, + "y" : 0, + "z" : 0 + }, + "scale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "emissionColor" : { + "r" : 0.5, + "g" : 0.7, + "b" : 1, + "a" : 1 + }, + "emissionIntensity" : 1, + "effectTime" : 0 + } + ],"Late":[ + + ] + }, + "attachedElementGuid" : { + "value" : "ee84a401-dd4f-4310-8202-8dc216f63e3c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 83.82008, + "elementName" : "Stay (83.82008)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fc3c7226-d56b-4b9f-a101-a04715d3ed09" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fc3c7226-d56b-4b9f-a101-a04715d3ed09" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "fc3c7226-d56b-4b9f-a101-a04715d3ed09" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "fc3c7226-d56b-4b9f-a101-a04715d3ed09" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "57900371-641e-4fda-a093-de36d6f9a119" + }, + "attachedElementGuid" : { + "value" : "fc3c7226-d56b-4b9f-a101-a04715d3ed09" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "57900371-641e-4fda-a093-de36d6f9a119" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "57900371-641e-4fda-a093-de36d6f9a119" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "57900371-641e-4fda-a093-de36d6f9a119" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "57900371-641e-4fda-a093-de36d6f9a119" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 83.9850845, + "elementName" : "Stay (83.98508)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2f35484f-f43a-4c9f-bbd3-69c67a7c503f" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2f35484f-f43a-4c9f-bbd3-69c67a7c503f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "2f35484f-f43a-4c9f-bbd3-69c67a7c503f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "2f35484f-f43a-4c9f-bbd3-69c67a7c503f" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6e2e920a-c0db-49f5-9598-b00595a32898" + }, + "attachedElementGuid" : { + "value" : "2f35484f-f43a-4c9f-bbd3-69c67a7c503f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6e2e920a-c0db-49f5-9598-b00595a32898" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6e2e920a-c0db-49f5-9598-b00595a32898" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6e2e920a-c0db-49f5-9598-b00595a32898" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "6e2e920a-c0db-49f5-9598-b00595a32898" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 84.1500854, + "elementName" : "Stay (84.15009)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9f7e1cc4-2e85-49df-9394-91c91a9186d4" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9f7e1cc4-2e85-49df-9394-91c91a9186d4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "9f7e1cc4-2e85-49df-9394-91c91a9186d4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "9f7e1cc4-2e85-49df-9394-91c91a9186d4" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "978b61b5-40c5-41e3-8ca5-da4382dc9f59" + }, + "attachedElementGuid" : { + "value" : "9f7e1cc4-2e85-49df-9394-91c91a9186d4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "978b61b5-40c5-41e3-8ca5-da4382dc9f59" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "978b61b5-40c5-41e3-8ca5-da4382dc9f59" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "978b61b5-40c5-41e3-8ca5-da4382dc9f59" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "978b61b5-40c5-41e3-8ca5-da4382dc9f59" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 84.48009, + "elementName" : "Tap (84.48009)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "73ef0338-972d-4c4e-bfc2-cef32d195207" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "73ef0338-972d-4c4e-bfc2-cef32d195207" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "73ef0338-972d-4c4e-bfc2-cef32d195207" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "73ef0338-972d-4c4e-bfc2-cef32d195207" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "45c347e9-296b-42c8-8c99-69ace23291a0" + }, + "attachedElementGuid" : { + "value" : "73ef0338-972d-4c4e-bfc2-cef32d195207" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "45c347e9-296b-42c8-8c99-69ace23291a0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "45c347e9-296b-42c8-8c99-69ace23291a0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "45c347e9-296b-42c8-8c99-69ace23291a0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "45c347e9-296b-42c8-8c99-69ace23291a0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeEffectsCollection_BM,Assembly-CSharp", + "time" : 82.98, + "elementName" : "New Time Effects Collection", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e0184092-e3d7-44e5-bfdd-2ecfbccd7bf5" + }, + "attachedElementGuid" : { + "value" : "45c347e9-296b-42c8-8c99-69ace23291a0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e0184092-e3d7-44e5-bfdd-2ecfbccd7bf5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Prior":[ + + ],"Default":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMRippleEffect_BM,Assembly-CSharp", + "rippleTime" : 2, + "positionOffset" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "eulerAngles" : { + "x" : -10, + "y" : 0, + "z" : 0 + }, + "scale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "emissionColor" : { + "r" : 0.5, + "g" : 0.7, + "b" : 1, + "a" : 1 + }, + "emissionIntensity" : 1, + "effectTime" : 0 + } + ],"Late":[ + + ] + }, + "attachedElementGuid" : { + "value" : "e0184092-e3d7-44e5-bfdd-2ecfbccd7bf5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 84.81009, + "elementName" : "Stay (84.81009)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ce150d7f-361c-4e55-92df-aded251c2f78" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ce150d7f-361c-4e55-92df-aded251c2f78" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "ce150d7f-361c-4e55-92df-aded251c2f78" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "ce150d7f-361c-4e55-92df-aded251c2f78" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f0fa2039-1570-412e-bc72-4ad2b5001212" + }, + "attachedElementGuid" : { + "value" : "ce150d7f-361c-4e55-92df-aded251c2f78" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f0fa2039-1570-412e-bc72-4ad2b5001212" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f0fa2039-1570-412e-bc72-4ad2b5001212" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f0fa2039-1570-412e-bc72-4ad2b5001212" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "f0fa2039-1570-412e-bc72-4ad2b5001212" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 84.97509, + "elementName" : "Stay (84.97509)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "00e410f2-359f-4139-93e1-504987e922fd" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "00e410f2-359f-4139-93e1-504987e922fd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "00e410f2-359f-4139-93e1-504987e922fd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "00e410f2-359f-4139-93e1-504987e922fd" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "966bbb42-89de-4d68-a901-a3fbcee633c4" + }, + "attachedElementGuid" : { + "value" : "00e410f2-359f-4139-93e1-504987e922fd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "966bbb42-89de-4d68-a901-a3fbcee633c4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "966bbb42-89de-4d68-a901-a3fbcee633c4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "966bbb42-89de-4d68-a901-a3fbcee633c4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "966bbb42-89de-4d68-a901-a3fbcee633c4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 85.14009, + "elementName" : "Stay (85.14009)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b6295611-efc2-4d79-9acd-b4609369dbea" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b6295611-efc2-4d79-9acd-b4609369dbea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "b6295611-efc2-4d79-9acd-b4609369dbea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "b6295611-efc2-4d79-9acd-b4609369dbea" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3ae4e8ca-9c10-44ed-837e-83c012362d02" + }, + "attachedElementGuid" : { + "value" : "b6295611-efc2-4d79-9acd-b4609369dbea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3ae4e8ca-9c10-44ed-837e-83c012362d02" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3ae4e8ca-9c10-44ed-837e-83c012362d02" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3ae4e8ca-9c10-44ed-837e-83c012362d02" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "3ae4e8ca-9c10-44ed-837e-83c012362d02" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 85.30509, + "elementName" : "Stay (85.30509)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "132cacd1-e294-4285-ad9b-0b32a5a39e1f" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "132cacd1-e294-4285-ad9b-0b32a5a39e1f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "132cacd1-e294-4285-ad9b-0b32a5a39e1f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "132cacd1-e294-4285-ad9b-0b32a5a39e1f" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0e593b42-7e9a-4651-8503-f1dd8cd20d54" + }, + "attachedElementGuid" : { + "value" : "132cacd1-e294-4285-ad9b-0b32a5a39e1f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0e593b42-7e9a-4651-8503-f1dd8cd20d54" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0e593b42-7e9a-4651-8503-f1dd8cd20d54" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0e593b42-7e9a-4651-8503-f1dd8cd20d54" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "0e593b42-7e9a-4651-8503-f1dd8cd20d54" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 85.38759, + "elementName" : "Stay (85.38759)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "222eeab9-ed4b-4e51-9152-fdf178ceebcd" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "222eeab9-ed4b-4e51-9152-fdf178ceebcd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "222eeab9-ed4b-4e51-9152-fdf178ceebcd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "222eeab9-ed4b-4e51-9152-fdf178ceebcd" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "37dffdd6-0d79-4e6c-958d-0296ee0d4e81" + }, + "attachedElementGuid" : { + "value" : "222eeab9-ed4b-4e51-9152-fdf178ceebcd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "37dffdd6-0d79-4e6c-958d-0296ee0d4e81" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "37dffdd6-0d79-4e6c-958d-0296ee0d4e81" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "37dffdd6-0d79-4e6c-958d-0296ee0d4e81" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "37dffdd6-0d79-4e6c-958d-0296ee0d4e81" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 85.4700851, + "elementName" : "Tap (85.47009)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e2069645-9cec-4c08-ae21-b4ffefae36eb" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e2069645-9cec-4c08-ae21-b4ffefae36eb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "e2069645-9cec-4c08-ae21-b4ffefae36eb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "e2069645-9cec-4c08-ae21-b4ffefae36eb" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "51a72acc-2cd1-4d47-9c4d-85755f7315a8" + }, + "attachedElementGuid" : { + "value" : "e2069645-9cec-4c08-ae21-b4ffefae36eb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "51a72acc-2cd1-4d47-9c4d-85755f7315a8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "51a72acc-2cd1-4d47-9c4d-85755f7315a8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "51a72acc-2cd1-4d47-9c4d-85755f7315a8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "51a72acc-2cd1-4d47-9c4d-85755f7315a8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeEffectsCollection_BM,Assembly-CSharp", + "time" : 83.97, + "elementName" : "New Time Effects Collection", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a48d6a49-891d-4dc8-b047-43f3a461cace" + }, + "attachedElementGuid" : { + "value" : "51a72acc-2cd1-4d47-9c4d-85755f7315a8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a48d6a49-891d-4dc8-b047-43f3a461cace" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Prior":[ + + ],"Default":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMRippleEffect_BM,Assembly-CSharp", + "rippleTime" : 2, + "positionOffset" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "eulerAngles" : { + "x" : -10, + "y" : 0, + "z" : 0 + }, + "scale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "emissionColor" : { + "r" : 0.5, + "g" : 0.7, + "b" : 1, + "a" : 1 + }, + "emissionIntensity" : 1, + "effectTime" : 0 + } + ],"Late":[ + + ] + }, + "attachedElementGuid" : { + "value" : "a48d6a49-891d-4dc8-b047-43f3a461cace" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 81.3450851, + "elementName" : "Stay (81.34509)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e5ce7e29-3df9-4689-9333-2217a36e587f" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e5ce7e29-3df9-4689-9333-2217a36e587f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "e5ce7e29-3df9-4689-9333-2217a36e587f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "e5ce7e29-3df9-4689-9333-2217a36e587f" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "09c57d76-04cd-41a7-8234-913997c2a5a6" + }, + "attachedElementGuid" : { + "value" : "e5ce7e29-3df9-4689-9333-2217a36e587f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "09c57d76-04cd-41a7-8234-913997c2a5a6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "09c57d76-04cd-41a7-8234-913997c2a5a6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "09c57d76-04cd-41a7-8234-913997c2a5a6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "09c57d76-04cd-41a7-8234-913997c2a5a6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 85.6350861, + "elementName" : "Stay (85.63509)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fe092da3-e086-42c9-b2d5-d80af362c373" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fe092da3-e086-42c9-b2d5-d80af362c373" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "fe092da3-e086-42c9-b2d5-d80af362c373" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "fe092da3-e086-42c9-b2d5-d80af362c373" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1f0b1605-7f18-4016-85be-6977b34b45fa" + }, + "attachedElementGuid" : { + "value" : "fe092da3-e086-42c9-b2d5-d80af362c373" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "1f0b1605-7f18-4016-85be-6977b34b45fa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1f0b1605-7f18-4016-85be-6977b34b45fa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "1f0b1605-7f18-4016-85be-6977b34b45fa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "1f0b1605-7f18-4016-85be-6977b34b45fa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 85.71759, + "elementName" : "Stay (85.71759)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c6776489-97f8-4d45-87a0-3b71e92ad7db" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c6776489-97f8-4d45-87a0-3b71e92ad7db" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "c6776489-97f8-4d45-87a0-3b71e92ad7db" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "c6776489-97f8-4d45-87a0-3b71e92ad7db" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "33f4dbe7-039a-488d-97e3-1fa615ed2b41" + }, + "attachedElementGuid" : { + "value" : "c6776489-97f8-4d45-87a0-3b71e92ad7db" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "33f4dbe7-039a-488d-97e3-1fa615ed2b41" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "33f4dbe7-039a-488d-97e3-1fa615ed2b41" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "33f4dbe7-039a-488d-97e3-1fa615ed2b41" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "33f4dbe7-039a-488d-97e3-1fa615ed2b41" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 85.80009, + "elementName" : "Stay (85.80009)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2ec12b06-89b8-453d-ae51-9947450c737b" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2ec12b06-89b8-453d-ae51-9947450c737b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "2ec12b06-89b8-453d-ae51-9947450c737b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "2ec12b06-89b8-453d-ae51-9947450c737b" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "dd048c08-7644-48d6-a39c-1d90a5e5f3f6" + }, + "attachedElementGuid" : { + "value" : "2ec12b06-89b8-453d-ae51-9947450c737b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "dd048c08-7644-48d6-a39c-1d90a5e5f3f6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "dd048c08-7644-48d6-a39c-1d90a5e5f3f6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "dd048c08-7644-48d6-a39c-1d90a5e5f3f6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "dd048c08-7644-48d6-a39c-1d90a5e5f3f6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 85.90961, + "elementName" : "Stay (85.90961)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "73bf48ec-34fc-4fe1-8e91-f6d4d850d342" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "73bf48ec-34fc-4fe1-8e91-f6d4d850d342" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "73bf48ec-34fc-4fe1-8e91-f6d4d850d342" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "73bf48ec-34fc-4fe1-8e91-f6d4d850d342" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d6aa6da9-6bd1-4e7c-b0fc-2c8ade784f17" + }, + "attachedElementGuid" : { + "value" : "73bf48ec-34fc-4fe1-8e91-f6d4d850d342" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d6aa6da9-6bd1-4e7c-b0fc-2c8ade784f17" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d6aa6da9-6bd1-4e7c-b0fc-2c8ade784f17" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d6aa6da9-6bd1-4e7c-b0fc-2c8ade784f17" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d6aa6da9-6bd1-4e7c-b0fc-2c8ade784f17" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 86.0196152, + "elementName" : "Stay (86.01962)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "588cb7b3-a3c2-48a2-a52c-a382a13b5eaf" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "588cb7b3-a3c2-48a2-a52c-a382a13b5eaf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "588cb7b3-a3c2-48a2-a52c-a382a13b5eaf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "588cb7b3-a3c2-48a2-a52c-a382a13b5eaf" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e04165a7-7c23-4d25-ba41-60e4e8be4e89" + }, + "attachedElementGuid" : { + "value" : "588cb7b3-a3c2-48a2-a52c-a382a13b5eaf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e04165a7-7c23-4d25-ba41-60e4e8be4e89" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e04165a7-7c23-4d25-ba41-60e4e8be4e89" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e04165a7-7c23-4d25-ba41-60e4e8be4e89" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "e04165a7-7c23-4d25-ba41-60e4e8be4e89" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 86.23962, + "elementName" : "Stay (86.23962)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "52d0cbb5-5c8f-4dab-a52a-a85cea7dc492" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "52d0cbb5-5c8f-4dab-a52a-a85cea7dc492" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "52d0cbb5-5c8f-4dab-a52a-a85cea7dc492" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "52d0cbb5-5c8f-4dab-a52a-a85cea7dc492" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "470632bb-a349-41ba-a2a3-15ed3acb039e" + }, + "attachedElementGuid" : { + "value" : "52d0cbb5-5c8f-4dab-a52a-a85cea7dc492" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "470632bb-a349-41ba-a2a3-15ed3acb039e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "470632bb-a349-41ba-a2a3-15ed3acb039e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "470632bb-a349-41ba-a2a3-15ed3acb039e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "470632bb-a349-41ba-a2a3-15ed3acb039e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 86.1296158, + "elementName" : "Stay (86.12962)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6296aef5-f687-4ccf-866b-d5a23b6c7393" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6296aef5-f687-4ccf-866b-d5a23b6c7393" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "6296aef5-f687-4ccf-866b-d5a23b6c7393" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "6296aef5-f687-4ccf-866b-d5a23b6c7393" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9ba876e7-e4d7-40e0-a9c0-3df2844c0248" + }, + "attachedElementGuid" : { + "value" : "6296aef5-f687-4ccf-866b-d5a23b6c7393" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9ba876e7-e4d7-40e0-a9c0-3df2844c0248" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9ba876e7-e4d7-40e0-a9c0-3df2844c0248" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "9ba876e7-e4d7-40e0-a9c0-3df2844c0248" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "9ba876e7-e4d7-40e0-a9c0-3df2844c0248" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 86.3496246, + "elementName" : "Stay (86.34962)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d7e703c0-9d37-4515-9b78-b98d69a77fc6" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d7e703c0-9d37-4515-9b78-b98d69a77fc6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "d7e703c0-9d37-4515-9b78-b98d69a77fc6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "d7e703c0-9d37-4515-9b78-b98d69a77fc6" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e1ef9129-44be-4c41-8057-2609de473244" + }, + "attachedElementGuid" : { + "value" : "d7e703c0-9d37-4515-9b78-b98d69a77fc6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e1ef9129-44be-4c41-8057-2609de473244" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e1ef9129-44be-4c41-8057-2609de473244" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e1ef9129-44be-4c41-8057-2609de473244" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "e1ef9129-44be-4c41-8057-2609de473244" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 86.4596252, + "elementName" : "Tap (86.45963)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "be0c0096-4b07-49f4-a0d1-8136a37e3cf9" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "be0c0096-4b07-49f4-a0d1-8136a37e3cf9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "be0c0096-4b07-49f4-a0d1-8136a37e3cf9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "be0c0096-4b07-49f4-a0d1-8136a37e3cf9" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "354dac85-39d9-409d-9f33-bb909b285311" + }, + "attachedElementGuid" : { + "value" : "be0c0096-4b07-49f4-a0d1-8136a37e3cf9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "354dac85-39d9-409d-9f33-bb909b285311" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "354dac85-39d9-409d-9f33-bb909b285311" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "354dac85-39d9-409d-9f33-bb909b285311" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "354dac85-39d9-409d-9f33-bb909b285311" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeEffectsCollection_BM,Assembly-CSharp", + "time" : 84.96, + "elementName" : "New Time Effects Collection", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2fd7ec15-ea20-459e-99d1-15877688d072" + }, + "attachedElementGuid" : { + "value" : "354dac85-39d9-409d-9f33-bb909b285311" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2fd7ec15-ea20-459e-99d1-15877688d072" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Prior":[ + + ],"Default":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMRippleEffect_BM,Assembly-CSharp", + "rippleTime" : 2, + "positionOffset" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "eulerAngles" : { + "x" : -10, + "y" : 0, + "z" : 0 + }, + "scale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "emissionColor" : { + "r" : 0.5, + "g" : 0.7, + "b" : 1, + "a" : 1 + }, + "emissionIntensity" : 1, + "effectTime" : 0 + } + ],"Late":[ + + ] + }, + "attachedElementGuid" : { + "value" : "2fd7ec15-ea20-459e-99d1-15877688d072" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 86.62509, + "elementName" : "Stay (86.62509)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8164cb69-7a92-4a66-b834-1feec4d70ead" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8164cb69-7a92-4a66-b834-1feec4d70ead" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "8164cb69-7a92-4a66-b834-1feec4d70ead" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "8164cb69-7a92-4a66-b834-1feec4d70ead" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c9cdbf36-06cd-42c1-989f-daf6fc1a8f66" + }, + "attachedElementGuid" : { + "value" : "8164cb69-7a92-4a66-b834-1feec4d70ead" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c9cdbf36-06cd-42c1-989f-daf6fc1a8f66" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c9cdbf36-06cd-42c1-989f-daf6fc1a8f66" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c9cdbf36-06cd-42c1-989f-daf6fc1a8f66" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "c9cdbf36-06cd-42c1-989f-daf6fc1a8f66" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 86.79009, + "elementName" : "Stay (86.79009)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5292a5bf-a73a-4578-9449-5c3d04dee4f7" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5292a5bf-a73a-4578-9449-5c3d04dee4f7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "5292a5bf-a73a-4578-9449-5c3d04dee4f7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "5292a5bf-a73a-4578-9449-5c3d04dee4f7" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9197a8b9-b4f1-4742-a394-8cce0fce2336" + }, + "attachedElementGuid" : { + "value" : "5292a5bf-a73a-4578-9449-5c3d04dee4f7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9197a8b9-b4f1-4742-a394-8cce0fce2336" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9197a8b9-b4f1-4742-a394-8cce0fce2336" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "9197a8b9-b4f1-4742-a394-8cce0fce2336" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "9197a8b9-b4f1-4742-a394-8cce0fce2336" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 86.54259, + "elementName" : "Stay (86.54259)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f564757f-df9c-45c8-bd6a-b5bb4359e172" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f564757f-df9c-45c8-bd6a-b5bb4359e172" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "f564757f-df9c-45c8-bd6a-b5bb4359e172" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "f564757f-df9c-45c8-bd6a-b5bb4359e172" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "26ac9041-c029-45d0-89d5-575f8ceaa772" + }, + "attachedElementGuid" : { + "value" : "f564757f-df9c-45c8-bd6a-b5bb4359e172" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "26ac9041-c029-45d0-89d5-575f8ceaa772" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "26ac9041-c029-45d0-89d5-575f8ceaa772" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "26ac9041-c029-45d0-89d5-575f8ceaa772" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "26ac9041-c029-45d0-89d5-575f8ceaa772" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 86.87259, + "elementName" : "Stay (86.87259)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e2af37fc-0b16-4723-94ff-4cf928e03ab8" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e2af37fc-0b16-4723-94ff-4cf928e03ab8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "e2af37fc-0b16-4723-94ff-4cf928e03ab8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "e2af37fc-0b16-4723-94ff-4cf928e03ab8" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "dc492e1b-b86c-46ca-b9d6-0bd416c84510" + }, + "attachedElementGuid" : { + "value" : "e2af37fc-0b16-4723-94ff-4cf928e03ab8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "dc492e1b-b86c-46ca-b9d6-0bd416c84510" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "dc492e1b-b86c-46ca-b9d6-0bd416c84510" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "dc492e1b-b86c-46ca-b9d6-0bd416c84510" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "dc492e1b-b86c-46ca-b9d6-0bd416c84510" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 87.03759, + "elementName" : "Stay (87.03759)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2e4eeeec-6fb2-4fb0-807f-406602745417" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2e4eeeec-6fb2-4fb0-807f-406602745417" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "2e4eeeec-6fb2-4fb0-807f-406602745417" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "2e4eeeec-6fb2-4fb0-807f-406602745417" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7fc35653-760a-4b0b-85ef-cd4a2c449e72" + }, + "attachedElementGuid" : { + "value" : "2e4eeeec-6fb2-4fb0-807f-406602745417" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7fc35653-760a-4b0b-85ef-cd4a2c449e72" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7fc35653-760a-4b0b-85ef-cd4a2c449e72" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "7fc35653-760a-4b0b-85ef-cd4a2c449e72" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "7fc35653-760a-4b0b-85ef-cd4a2c449e72" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 87.12009, + "elementName" : "Stay (87.12009)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7e43d419-6387-445f-9d85-6681bfc93abd" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7e43d419-6387-445f-9d85-6681bfc93abd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "7e43d419-6387-445f-9d85-6681bfc93abd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "7e43d419-6387-445f-9d85-6681bfc93abd" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7f667b69-45f3-47df-b614-5b40a51c7f4b" + }, + "attachedElementGuid" : { + "value" : "7e43d419-6387-445f-9d85-6681bfc93abd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7f667b69-45f3-47df-b614-5b40a51c7f4b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7f667b69-45f3-47df-b614-5b40a51c7f4b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "7f667b69-45f3-47df-b614-5b40a51c7f4b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "7f667b69-45f3-47df-b614-5b40a51c7f4b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 87.20259, + "elementName" : "Stay (87.20259)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3371aa26-8cdb-45d9-bc65-b03c75a521dd" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3371aa26-8cdb-45d9-bc65-b03c75a521dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "3371aa26-8cdb-45d9-bc65-b03c75a521dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "3371aa26-8cdb-45d9-bc65-b03c75a521dd" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "db50d4ed-db52-481b-ad44-35ed0e969067" + }, + "attachedElementGuid" : { + "value" : "3371aa26-8cdb-45d9-bc65-b03c75a521dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "db50d4ed-db52-481b-ad44-35ed0e969067" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "db50d4ed-db52-481b-ad44-35ed0e969067" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "db50d4ed-db52-481b-ad44-35ed0e969067" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "db50d4ed-db52-481b-ad44-35ed0e969067" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 87.28509, + "elementName" : "Stay (87.28509)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fd5c8625-8185-4b72-a1b9-68c0b5449752" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fd5c8625-8185-4b72-a1b9-68c0b5449752" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "fd5c8625-8185-4b72-a1b9-68c0b5449752" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "fd5c8625-8185-4b72-a1b9-68c0b5449752" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "866872b2-9747-4f49-a5b4-4ba986a6bee2" + }, + "attachedElementGuid" : { + "value" : "fd5c8625-8185-4b72-a1b9-68c0b5449752" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "866872b2-9747-4f49-a5b4-4ba986a6bee2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "866872b2-9747-4f49-a5b4-4ba986a6bee2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "866872b2-9747-4f49-a5b4-4ba986a6bee2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "866872b2-9747-4f49-a5b4-4ba986a6bee2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 87.36759, + "elementName" : "Stay (87.36759)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "94523057-cd84-4e1f-8456-6af0a85532a2" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "94523057-cd84-4e1f-8456-6af0a85532a2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "94523057-cd84-4e1f-8456-6af0a85532a2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "94523057-cd84-4e1f-8456-6af0a85532a2" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "930aded6-8322-45de-8262-139008e59e40" + }, + "attachedElementGuid" : { + "value" : "94523057-cd84-4e1f-8456-6af0a85532a2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "930aded6-8322-45de-8262-139008e59e40" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "930aded6-8322-45de-8262-139008e59e40" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "930aded6-8322-45de-8262-139008e59e40" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "930aded6-8322-45de-8262-139008e59e40" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 87.45009, + "elementName" : "Tap (87.45009)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "18bcac88-c98d-4a17-b11d-3ff1b4b268af" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "18bcac88-c98d-4a17-b11d-3ff1b4b268af" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "18bcac88-c98d-4a17-b11d-3ff1b4b268af" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "18bcac88-c98d-4a17-b11d-3ff1b4b268af" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "088949f3-3b92-4071-b9be-bc33a2aa8ac2" + }, + "attachedElementGuid" : { + "value" : "18bcac88-c98d-4a17-b11d-3ff1b4b268af" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "088949f3-3b92-4071-b9be-bc33a2aa8ac2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "088949f3-3b92-4071-b9be-bc33a2aa8ac2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "088949f3-3b92-4071-b9be-bc33a2aa8ac2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "088949f3-3b92-4071-b9be-bc33a2aa8ac2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeEffectsCollection_BM,Assembly-CSharp", + "time" : 85.95, + "elementName" : "New Time Effects Collection", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e32c0729-0568-4210-b953-3d28ac55aac0" + }, + "attachedElementGuid" : { + "value" : "088949f3-3b92-4071-b9be-bc33a2aa8ac2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e32c0729-0568-4210-b953-3d28ac55aac0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Prior":[ + + ],"Default":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMRippleEffect_BM,Assembly-CSharp", + "rippleTime" : 2, + "positionOffset" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "eulerAngles" : { + "x" : -10, + "y" : 0, + "z" : 0 + }, + "scale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "emissionColor" : { + "r" : 0.5, + "g" : 0.7, + "b" : 1, + "a" : 1 + }, + "emissionIntensity" : 1, + "effectTime" : 0 + } + ],"Late":[ + + ] + }, + "attachedElementGuid" : { + "value" : "e32c0729-0568-4210-b953-3d28ac55aac0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 87.78009, + "elementName" : "Stay (87.78009)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c3aac2d8-0b73-4076-8161-d4b70ff625e3" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c3aac2d8-0b73-4076-8161-d4b70ff625e3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "c3aac2d8-0b73-4076-8161-d4b70ff625e3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "c3aac2d8-0b73-4076-8161-d4b70ff625e3" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "591e6eb0-3e8b-43fc-ba91-155931079118" + }, + "attachedElementGuid" : { + "value" : "c3aac2d8-0b73-4076-8161-d4b70ff625e3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "591e6eb0-3e8b-43fc-ba91-155931079118" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "591e6eb0-3e8b-43fc-ba91-155931079118" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "591e6eb0-3e8b-43fc-ba91-155931079118" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "591e6eb0-3e8b-43fc-ba91-155931079118" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 87.94509, + "elementName" : "Stay (87.94509)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "86633782-fd10-4a5b-9f02-e25fbebcc53b" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "86633782-fd10-4a5b-9f02-e25fbebcc53b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "86633782-fd10-4a5b-9f02-e25fbebcc53b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "86633782-fd10-4a5b-9f02-e25fbebcc53b" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4f174045-1b41-4bd6-aed5-d22d011e7d08" + }, + "attachedElementGuid" : { + "value" : "86633782-fd10-4a5b-9f02-e25fbebcc53b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4f174045-1b41-4bd6-aed5-d22d011e7d08" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4f174045-1b41-4bd6-aed5-d22d011e7d08" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4f174045-1b41-4bd6-aed5-d22d011e7d08" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "4f174045-1b41-4bd6-aed5-d22d011e7d08" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 88.11009, + "elementName" : "Stay (88.11009)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7b23ccd3-a329-407c-9575-98fe472bd629" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7b23ccd3-a329-407c-9575-98fe472bd629" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "7b23ccd3-a329-407c-9575-98fe472bd629" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "7b23ccd3-a329-407c-9575-98fe472bd629" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9b8d4227-d857-4441-894c-8c8d0650d5e7" + }, + "attachedElementGuid" : { + "value" : "7b23ccd3-a329-407c-9575-98fe472bd629" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9b8d4227-d857-4441-894c-8c8d0650d5e7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9b8d4227-d857-4441-894c-8c8d0650d5e7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "9b8d4227-d857-4441-894c-8c8d0650d5e7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "9b8d4227-d857-4441-894c-8c8d0650d5e7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 88.440094, + "elementName" : "Tap (88.44009)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "95b7aec5-b402-401f-bba2-13c7c647d5f8" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "95b7aec5-b402-401f-bba2-13c7c647d5f8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "95b7aec5-b402-401f-bba2-13c7c647d5f8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "95b7aec5-b402-401f-bba2-13c7c647d5f8" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fe45f1be-7141-401d-92d9-4c51e975e17f" + }, + "attachedElementGuid" : { + "value" : "95b7aec5-b402-401f-bba2-13c7c647d5f8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "fe45f1be-7141-401d-92d9-4c51e975e17f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fe45f1be-7141-401d-92d9-4c51e975e17f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "fe45f1be-7141-401d-92d9-4c51e975e17f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "fe45f1be-7141-401d-92d9-4c51e975e17f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeEffectsCollection_BM,Assembly-CSharp", + "time" : 86.94, + "elementName" : "New Time Effects Collection", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3fbcf3b8-5c4e-4ae1-891b-b6b408925006" + }, + "attachedElementGuid" : { + "value" : "fe45f1be-7141-401d-92d9-4c51e975e17f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3fbcf3b8-5c4e-4ae1-891b-b6b408925006" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Prior":[ + + ],"Default":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMRippleEffect_BM,Assembly-CSharp", + "rippleTime" : 2, + "positionOffset" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "eulerAngles" : { + "x" : -10, + "y" : 0, + "z" : 0 + }, + "scale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "emissionColor" : { + "r" : 0.5, + "g" : 0.7, + "b" : 1, + "a" : 1 + }, + "emissionIntensity" : 1, + "effectTime" : 0 + } + ],"Late":[ + + ] + }, + "attachedElementGuid" : { + "value" : "3fbcf3b8-5c4e-4ae1-891b-b6b408925006" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 88.77009, + "elementName" : "Stay (88.77009)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e4f42f8d-28d2-4370-8860-cceaff417265" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e4f42f8d-28d2-4370-8860-cceaff417265" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "e4f42f8d-28d2-4370-8860-cceaff417265" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "e4f42f8d-28d2-4370-8860-cceaff417265" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "88790c67-ce4b-459e-9de0-eb5030866469" + }, + "attachedElementGuid" : { + "value" : "e4f42f8d-28d2-4370-8860-cceaff417265" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "88790c67-ce4b-459e-9de0-eb5030866469" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "88790c67-ce4b-459e-9de0-eb5030866469" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "88790c67-ce4b-459e-9de0-eb5030866469" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "88790c67-ce4b-459e-9de0-eb5030866469" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 88.93509, + "elementName" : "Stay (88.93509)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5f3caf6c-250e-4a86-b86c-706e5a72246f" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5f3caf6c-250e-4a86-b86c-706e5a72246f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "5f3caf6c-250e-4a86-b86c-706e5a72246f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "5f3caf6c-250e-4a86-b86c-706e5a72246f" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "50439b5f-cdde-4520-ae68-2cb6ac922c0b" + }, + "attachedElementGuid" : { + "value" : "5f3caf6c-250e-4a86-b86c-706e5a72246f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "50439b5f-cdde-4520-ae68-2cb6ac922c0b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "50439b5f-cdde-4520-ae68-2cb6ac922c0b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "50439b5f-cdde-4520-ae68-2cb6ac922c0b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "50439b5f-cdde-4520-ae68-2cb6ac922c0b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 89.10009, + "elementName" : "Stay (89.10009)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2ee4c765-149f-49d7-ab01-1032bb65e131" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2ee4c765-149f-49d7-ab01-1032bb65e131" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "2ee4c765-149f-49d7-ab01-1032bb65e131" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "2ee4c765-149f-49d7-ab01-1032bb65e131" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "99712c9b-dac3-44f3-8cf4-aa88aa5297d2" + }, + "attachedElementGuid" : { + "value" : "2ee4c765-149f-49d7-ab01-1032bb65e131" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "99712c9b-dac3-44f3-8cf4-aa88aa5297d2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "99712c9b-dac3-44f3-8cf4-aa88aa5297d2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "99712c9b-dac3-44f3-8cf4-aa88aa5297d2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "99712c9b-dac3-44f3-8cf4-aa88aa5297d2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 89.26509, + "elementName" : "Stay (89.26509)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c0d1ddc5-ede5-406c-8f9e-22828cc18d9f" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c0d1ddc5-ede5-406c-8f9e-22828cc18d9f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "c0d1ddc5-ede5-406c-8f9e-22828cc18d9f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "c0d1ddc5-ede5-406c-8f9e-22828cc18d9f" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "12569e8b-3363-4fab-9819-4b00a59eb1b1" + }, + "attachedElementGuid" : { + "value" : "c0d1ddc5-ede5-406c-8f9e-22828cc18d9f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "12569e8b-3363-4fab-9819-4b00a59eb1b1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "12569e8b-3363-4fab-9819-4b00a59eb1b1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "12569e8b-3363-4fab-9819-4b00a59eb1b1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "12569e8b-3363-4fab-9819-4b00a59eb1b1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 89.3475952, + "elementName" : "Stay (89.3476)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "97aaa983-9481-4def-9b2c-537b590e0245" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "97aaa983-9481-4def-9b2c-537b590e0245" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "97aaa983-9481-4def-9b2c-537b590e0245" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "97aaa983-9481-4def-9b2c-537b590e0245" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8e7489db-7d11-4c02-8371-64c73a8d3f59" + }, + "attachedElementGuid" : { + "value" : "97aaa983-9481-4def-9b2c-537b590e0245" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8e7489db-7d11-4c02-8371-64c73a8d3f59" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8e7489db-7d11-4c02-8371-64c73a8d3f59" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8e7489db-7d11-4c02-8371-64c73a8d3f59" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "8e7489db-7d11-4c02-8371-64c73a8d3f59" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 89.43009, + "elementName" : "Tap (89.43009)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9ae58a6e-e7cb-4bb7-81ef-be68a9546664" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9ae58a6e-e7cb-4bb7-81ef-be68a9546664" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "9ae58a6e-e7cb-4bb7-81ef-be68a9546664" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "9ae58a6e-e7cb-4bb7-81ef-be68a9546664" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c0f89580-2447-49cf-9a97-28976add9bc9" + }, + "attachedElementGuid" : { + "value" : "9ae58a6e-e7cb-4bb7-81ef-be68a9546664" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c0f89580-2447-49cf-9a97-28976add9bc9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c0f89580-2447-49cf-9a97-28976add9bc9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c0f89580-2447-49cf-9a97-28976add9bc9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "c0f89580-2447-49cf-9a97-28976add9bc9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeEffectsCollection_BM,Assembly-CSharp", + "time" : 87.93, + "elementName" : "New Time Effects Collection", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2f3fbf23-2aa2-42cc-a751-88e34282369c" + }, + "attachedElementGuid" : { + "value" : "c0f89580-2447-49cf-9a97-28976add9bc9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2f3fbf23-2aa2-42cc-a751-88e34282369c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Prior":[ + + ],"Default":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMRippleEffect_BM,Assembly-CSharp", + "rippleTime" : 2, + "positionOffset" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "eulerAngles" : { + "x" : -10, + "y" : 0, + "z" : 0 + }, + "scale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "emissionColor" : { + "r" : 0.5, + "g" : 0.7, + "b" : 1, + "a" : 1 + }, + "emissionIntensity" : 1, + "effectTime" : 0 + } + ],"Late":[ + + ] + }, + "attachedElementGuid" : { + "value" : "2f3fbf23-2aa2-42cc-a751-88e34282369c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 89.59509, + "elementName" : "Stay (89.59509)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f551b5a3-f454-4614-8730-b6d746437cc2" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f551b5a3-f454-4614-8730-b6d746437cc2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "f551b5a3-f454-4614-8730-b6d746437cc2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "f551b5a3-f454-4614-8730-b6d746437cc2" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e7a37d1c-2a4b-4cb4-b5b7-25ec0e2c530d" + }, + "attachedElementGuid" : { + "value" : "f551b5a3-f454-4614-8730-b6d746437cc2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e7a37d1c-2a4b-4cb4-b5b7-25ec0e2c530d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e7a37d1c-2a4b-4cb4-b5b7-25ec0e2c530d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e7a37d1c-2a4b-4cb4-b5b7-25ec0e2c530d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "e7a37d1c-2a4b-4cb4-b5b7-25ec0e2c530d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 89.67759, + "elementName" : "Stay (89.67759)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "03f9fa6b-6cb1-4264-9437-6bcd7b5e1545" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "03f9fa6b-6cb1-4264-9437-6bcd7b5e1545" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "03f9fa6b-6cb1-4264-9437-6bcd7b5e1545" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "03f9fa6b-6cb1-4264-9437-6bcd7b5e1545" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1a09e43e-0c27-48ba-8c4a-65c7017b4b66" + }, + "attachedElementGuid" : { + "value" : "03f9fa6b-6cb1-4264-9437-6bcd7b5e1545" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "1a09e43e-0c27-48ba-8c4a-65c7017b4b66" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1a09e43e-0c27-48ba-8c4a-65c7017b4b66" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "1a09e43e-0c27-48ba-8c4a-65c7017b4b66" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "1a09e43e-0c27-48ba-8c4a-65c7017b4b66" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 89.75973, + "elementName" : "Stay (89.75973)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a4c4b942-e7bd-40c3-9f19-446df3a63198" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a4c4b942-e7bd-40c3-9f19-446df3a63198" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "a4c4b942-e7bd-40c3-9f19-446df3a63198" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "a4c4b942-e7bd-40c3-9f19-446df3a63198" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "57556c58-a121-40c2-9669-c751489ade38" + }, + "attachedElementGuid" : { + "value" : "a4c4b942-e7bd-40c3-9f19-446df3a63198" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "57556c58-a121-40c2-9669-c751489ade38" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "57556c58-a121-40c2-9669-c751489ade38" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "57556c58-a121-40c2-9669-c751489ade38" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "57556c58-a121-40c2-9669-c751489ade38" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 89.8697357, + "elementName" : "Stay (89.86974)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "51a099a8-3a56-4c52-97ed-612b75263d85" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "51a099a8-3a56-4c52-97ed-612b75263d85" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "51a099a8-3a56-4c52-97ed-612b75263d85" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "51a099a8-3a56-4c52-97ed-612b75263d85" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9151f82b-d239-4649-bb60-6d9b37fd0c9f" + }, + "attachedElementGuid" : { + "value" : "51a099a8-3a56-4c52-97ed-612b75263d85" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9151f82b-d239-4649-bb60-6d9b37fd0c9f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9151f82b-d239-4649-bb60-6d9b37fd0c9f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "9151f82b-d239-4649-bb60-6d9b37fd0c9f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "9151f82b-d239-4649-bb60-6d9b37fd0c9f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 89.97974, + "elementName" : "Stay (89.97974)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "13d6cdf6-f8cd-4af5-b83d-b82310230087" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "13d6cdf6-f8cd-4af5-b83d-b82310230087" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "13d6cdf6-f8cd-4af5-b83d-b82310230087" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "13d6cdf6-f8cd-4af5-b83d-b82310230087" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "57f44a08-06af-4b39-a08d-55cf4955dc7e" + }, + "attachedElementGuid" : { + "value" : "13d6cdf6-f8cd-4af5-b83d-b82310230087" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "57f44a08-06af-4b39-a08d-55cf4955dc7e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "57f44a08-06af-4b39-a08d-55cf4955dc7e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "57f44a08-06af-4b39-a08d-55cf4955dc7e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "57f44a08-06af-4b39-a08d-55cf4955dc7e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 90.08974, + "elementName" : "Stay (90.08974)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7045c2e1-a0ce-4cb9-a52f-ef272616eaf7" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7045c2e1-a0ce-4cb9-a52f-ef272616eaf7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "7045c2e1-a0ce-4cb9-a52f-ef272616eaf7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "7045c2e1-a0ce-4cb9-a52f-ef272616eaf7" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "aa90cdc4-9e3b-4da8-bd90-96e00186c9db" + }, + "attachedElementGuid" : { + "value" : "7045c2e1-a0ce-4cb9-a52f-ef272616eaf7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "aa90cdc4-9e3b-4da8-bd90-96e00186c9db" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "aa90cdc4-9e3b-4da8-bd90-96e00186c9db" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "aa90cdc4-9e3b-4da8-bd90-96e00186c9db" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "aa90cdc4-9e3b-4da8-bd90-96e00186c9db" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 90.1997452, + "elementName" : "Stay (90.19975)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0d6e2e1c-9409-4e49-b227-dab01bea135e" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0d6e2e1c-9409-4e49-b227-dab01bea135e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "0d6e2e1c-9409-4e49-b227-dab01bea135e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "0d6e2e1c-9409-4e49-b227-dab01bea135e" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "886010e8-6572-4b87-9dba-ddc9f17638a6" + }, + "attachedElementGuid" : { + "value" : "0d6e2e1c-9409-4e49-b227-dab01bea135e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "886010e8-6572-4b87-9dba-ddc9f17638a6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "886010e8-6572-4b87-9dba-ddc9f17638a6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "886010e8-6572-4b87-9dba-ddc9f17638a6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "886010e8-6572-4b87-9dba-ddc9f17638a6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 90.3097458, + "elementName" : "Stay (90.30975)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7802c80d-c9e0-4834-a76d-6a3a72906c42" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7802c80d-c9e0-4834-a76d-6a3a72906c42" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "7802c80d-c9e0-4834-a76d-6a3a72906c42" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "7802c80d-c9e0-4834-a76d-6a3a72906c42" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0b43a06a-65f4-42d4-a9bf-0e383dde7201" + }, + "attachedElementGuid" : { + "value" : "7802c80d-c9e0-4834-a76d-6a3a72906c42" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0b43a06a-65f4-42d4-a9bf-0e383dde7201" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0b43a06a-65f4-42d4-a9bf-0e383dde7201" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0b43a06a-65f4-42d4-a9bf-0e383dde7201" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "0b43a06a-65f4-42d4-a9bf-0e383dde7201" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 90.419754, + "elementName" : "Tap (90.41975)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "dae6f49e-5b91-4499-ba9c-eba95114ad7e" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "dae6f49e-5b91-4499-ba9c-eba95114ad7e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "dae6f49e-5b91-4499-ba9c-eba95114ad7e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "dae6f49e-5b91-4499-ba9c-eba95114ad7e" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1549b1dd-bc25-4720-a3ac-8a494ef85f08" + }, + "attachedElementGuid" : { + "value" : "dae6f49e-5b91-4499-ba9c-eba95114ad7e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "1549b1dd-bc25-4720-a3ac-8a494ef85f08" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1549b1dd-bc25-4720-a3ac-8a494ef85f08" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "1549b1dd-bc25-4720-a3ac-8a494ef85f08" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "1549b1dd-bc25-4720-a3ac-8a494ef85f08" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeEffectsCollection_BM,Assembly-CSharp", + "time" : 88.92, + "elementName" : "New Time Effects Collection", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b3850289-b151-4bbd-9d0b-2baf731f94a6" + }, + "attachedElementGuid" : { + "value" : "1549b1dd-bc25-4720-a3ac-8a494ef85f08" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b3850289-b151-4bbd-9d0b-2baf731f94a6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Prior":[ + + ],"Default":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMRippleEffect_BM,Assembly-CSharp", + "rippleTime" : 2, + "positionOffset" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "eulerAngles" : { + "x" : -10, + "y" : 0, + "z" : 0 + }, + "scale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "emissionColor" : { + "r" : 0.5, + "g" : 0.7, + "b" : 1, + "a" : 1 + }, + "emissionIntensity" : 1, + "effectTime" : 0 + } + ],"Late":[ + + ] + }, + "attachedElementGuid" : { + "value" : "b3850289-b151-4bbd-9d0b-2baf731f94a6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 91.07977, + "elementName" : "Stay (91.07977)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a48b49ef-3ca6-41d2-a084-2d2c36c3aa95" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a48b49ef-3ca6-41d2-a084-2d2c36c3aa95" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "a48b49ef-3ca6-41d2-a084-2d2c36c3aa95" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "a48b49ef-3ca6-41d2-a084-2d2c36c3aa95" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0bad1fa7-0add-4ebe-91aa-6b56555b718e" + }, + "attachedElementGuid" : { + "value" : "a48b49ef-3ca6-41d2-a084-2d2c36c3aa95" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0bad1fa7-0add-4ebe-91aa-6b56555b718e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0bad1fa7-0add-4ebe-91aa-6b56555b718e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0bad1fa7-0add-4ebe-91aa-6b56555b718e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "0bad1fa7-0add-4ebe-91aa-6b56555b718e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 90.58509, + "elementName" : "Stay (90.58509)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1bdd8789-b387-4758-9bcc-3825713466bf" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1bdd8789-b387-4758-9bcc-3825713466bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "1bdd8789-b387-4758-9bcc-3825713466bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "1bdd8789-b387-4758-9bcc-3825713466bf" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "40aff894-3983-4309-9ca5-8f0e4ec35e3c" + }, + "attachedElementGuid" : { + "value" : "1bdd8789-b387-4758-9bcc-3825713466bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "40aff894-3983-4309-9ca5-8f0e4ec35e3c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "40aff894-3983-4309-9ca5-8f0e4ec35e3c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "40aff894-3983-4309-9ca5-8f0e4ec35e3c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "40aff894-3983-4309-9ca5-8f0e4ec35e3c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 90.75009, + "elementName" : "Stay (90.75009)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d1c13bb4-16ec-4429-9fd1-9dfa284bc79f" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d1c13bb4-16ec-4429-9fd1-9dfa284bc79f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "d1c13bb4-16ec-4429-9fd1-9dfa284bc79f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "d1c13bb4-16ec-4429-9fd1-9dfa284bc79f" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e0fac58a-a09b-4668-a10a-64a9673dedd0" + }, + "attachedElementGuid" : { + "value" : "d1c13bb4-16ec-4429-9fd1-9dfa284bc79f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e0fac58a-a09b-4668-a10a-64a9673dedd0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e0fac58a-a09b-4668-a10a-64a9673dedd0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e0fac58a-a09b-4668-a10a-64a9673dedd0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "e0fac58a-a09b-4668-a10a-64a9673dedd0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 90.91509, + "elementName" : "Stay (90.91509)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "91129662-e8af-4ab5-b1f6-76ac59d0c86b" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "91129662-e8af-4ab5-b1f6-76ac59d0c86b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "91129662-e8af-4ab5-b1f6-76ac59d0c86b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "91129662-e8af-4ab5-b1f6-76ac59d0c86b" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6eac17b6-b192-4423-8ce1-ad6af41d14d4" + }, + "attachedElementGuid" : { + "value" : "91129662-e8af-4ab5-b1f6-76ac59d0c86b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6eac17b6-b192-4423-8ce1-ad6af41d14d4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6eac17b6-b192-4423-8ce1-ad6af41d14d4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6eac17b6-b192-4423-8ce1-ad6af41d14d4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "6eac17b6-b192-4423-8ce1-ad6af41d14d4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 91.2450943, + "elementName" : "Stay (91.24509)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "70fe9a71-2f3d-4f5d-afd2-72f784977f97" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "70fe9a71-2f3d-4f5d-afd2-72f784977f97" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "70fe9a71-2f3d-4f5d-afd2-72f784977f97" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "70fe9a71-2f3d-4f5d-afd2-72f784977f97" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5785d9e5-4790-4511-af6c-82e4176f0d2c" + }, + "attachedElementGuid" : { + "value" : "70fe9a71-2f3d-4f5d-afd2-72f784977f97" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5785d9e5-4790-4511-af6c-82e4176f0d2c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5785d9e5-4790-4511-af6c-82e4176f0d2c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5785d9e5-4790-4511-af6c-82e4176f0d2c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "5785d9e5-4790-4511-af6c-82e4176f0d2c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 91.4100952, + "elementName" : "Tap (91.4101)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d0f79f08-8ba1-444f-8bad-55849519e594" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d0f79f08-8ba1-444f-8bad-55849519e594" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "d0f79f08-8ba1-444f-8bad-55849519e594" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "d0f79f08-8ba1-444f-8bad-55849519e594" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8d4dcd66-865e-426f-a6d8-4a2fe0dc3e0d" + }, + "attachedElementGuid" : { + "value" : "d0f79f08-8ba1-444f-8bad-55849519e594" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8d4dcd66-865e-426f-a6d8-4a2fe0dc3e0d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8d4dcd66-865e-426f-a6d8-4a2fe0dc3e0d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8d4dcd66-865e-426f-a6d8-4a2fe0dc3e0d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "8d4dcd66-865e-426f-a6d8-4a2fe0dc3e0d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeEffectsCollection_BM,Assembly-CSharp", + "time" : 89.91, + "elementName" : "New Time Effects Collection", + "tags" : [ + + ], + "elementGuid" : { + "value" : "42ed386c-6ada-4aa0-9387-14c309a29516" + }, + "attachedElementGuid" : { + "value" : "8d4dcd66-865e-426f-a6d8-4a2fe0dc3e0d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "42ed386c-6ada-4aa0-9387-14c309a29516" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Prior":[ + + ],"Default":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMRippleEffect_BM,Assembly-CSharp", + "rippleTime" : 2, + "positionOffset" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "eulerAngles" : { + "x" : -10, + "y" : 0, + "z" : 0 + }, + "scale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "emissionColor" : { + "r" : 0.5, + "g" : 0.7, + "b" : 1, + "a" : 1 + }, + "emissionIntensity" : 1, + "effectTime" : 0 + } + ],"Late":[ + + ] + }, + "attachedElementGuid" : { + "value" : "42ed386c-6ada-4aa0-9387-14c309a29516" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 91.7401, + "elementName" : "Stay (91.7401)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2b58ee0e-79e0-4af1-9585-69eee6ff3b07" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2b58ee0e-79e0-4af1-9585-69eee6ff3b07" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "2b58ee0e-79e0-4af1-9585-69eee6ff3b07" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "2b58ee0e-79e0-4af1-9585-69eee6ff3b07" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3371f4a3-7c09-4b8f-9d45-47748fa2ba70" + }, + "attachedElementGuid" : { + "value" : "2b58ee0e-79e0-4af1-9585-69eee6ff3b07" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3371f4a3-7c09-4b8f-9d45-47748fa2ba70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3371f4a3-7c09-4b8f-9d45-47748fa2ba70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3371f4a3-7c09-4b8f-9d45-47748fa2ba70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "3371f4a3-7c09-4b8f-9d45-47748fa2ba70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 91.9051, + "elementName" : "Stay (91.9051)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cef95a51-c117-446e-9a17-7a6a68bc4d50" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "cef95a51-c117-446e-9a17-7a6a68bc4d50" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "cef95a51-c117-446e-9a17-7a6a68bc4d50" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "cef95a51-c117-446e-9a17-7a6a68bc4d50" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2da3f6aa-7963-4163-b612-70bbe8b33937" + }, + "attachedElementGuid" : { + "value" : "cef95a51-c117-446e-9a17-7a6a68bc4d50" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2da3f6aa-7963-4163-b612-70bbe8b33937" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2da3f6aa-7963-4163-b612-70bbe8b33937" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "2da3f6aa-7963-4163-b612-70bbe8b33937" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "2da3f6aa-7963-4163-b612-70bbe8b33937" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 92.0701, + "elementName" : "Stay (92.0701)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "417777f0-3426-4f54-9125-211b3c0027e6" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "417777f0-3426-4f54-9125-211b3c0027e6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "417777f0-3426-4f54-9125-211b3c0027e6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "417777f0-3426-4f54-9125-211b3c0027e6" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0f0ea3b4-0161-463b-90fb-0c483099a3de" + }, + "attachedElementGuid" : { + "value" : "417777f0-3426-4f54-9125-211b3c0027e6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0f0ea3b4-0161-463b-90fb-0c483099a3de" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0f0ea3b4-0161-463b-90fb-0c483099a3de" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0f0ea3b4-0161-463b-90fb-0c483099a3de" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "0f0ea3b4-0161-463b-90fb-0c483099a3de" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 92.40009, + "elementName" : "Tap (92.40009)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "84d0f8a2-630b-461a-a5e0-09e276320983" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "84d0f8a2-630b-461a-a5e0-09e276320983" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "84d0f8a2-630b-461a-a5e0-09e276320983" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "84d0f8a2-630b-461a-a5e0-09e276320983" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "69b2240e-0d12-4c6d-bf6b-6bc0b76c57b7" + }, + "attachedElementGuid" : { + "value" : "84d0f8a2-630b-461a-a5e0-09e276320983" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "69b2240e-0d12-4c6d-bf6b-6bc0b76c57b7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "69b2240e-0d12-4c6d-bf6b-6bc0b76c57b7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "69b2240e-0d12-4c6d-bf6b-6bc0b76c57b7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "69b2240e-0d12-4c6d-bf6b-6bc0b76c57b7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeEffectsCollection_BM,Assembly-CSharp", + "time" : 90.9, + "elementName" : "New Time Effects Collection", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4b20dc8f-e813-4a07-aa15-da0834069e14" + }, + "attachedElementGuid" : { + "value" : "69b2240e-0d12-4c6d-bf6b-6bc0b76c57b7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4b20dc8f-e813-4a07-aa15-da0834069e14" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Prior":[ + + ],"Default":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMRippleEffect_BM,Assembly-CSharp", + "rippleTime" : 2, + "positionOffset" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "eulerAngles" : { + "x" : -10, + "y" : 0, + "z" : 0 + }, + "scale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "emissionColor" : { + "r" : 0.5, + "g" : 0.7, + "b" : 1, + "a" : 1 + }, + "emissionIntensity" : 1, + "effectTime" : 0 + } + ],"Late":[ + + ] + }, + "attachedElementGuid" : { + "value" : "4b20dc8f-e813-4a07-aa15-da0834069e14" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 92.7300949, + "elementName" : "Stay (92.73009)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1b2a8a3d-2c43-4558-ab51-e2cf965966c2" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1b2a8a3d-2c43-4558-ab51-e2cf965966c2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "1b2a8a3d-2c43-4558-ab51-e2cf965966c2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "1b2a8a3d-2c43-4558-ab51-e2cf965966c2" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f91f141a-2736-47a7-8f03-57636871393e" + }, + "attachedElementGuid" : { + "value" : "1b2a8a3d-2c43-4558-ab51-e2cf965966c2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f91f141a-2736-47a7-8f03-57636871393e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f91f141a-2736-47a7-8f03-57636871393e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f91f141a-2736-47a7-8f03-57636871393e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "f91f141a-2736-47a7-8f03-57636871393e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 92.8950958, + "elementName" : "Stay (92.8951)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ed51d75b-cf4b-43c9-8d8f-fcdf799aab17" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ed51d75b-cf4b-43c9-8d8f-fcdf799aab17" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "ed51d75b-cf4b-43c9-8d8f-fcdf799aab17" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "ed51d75b-cf4b-43c9-8d8f-fcdf799aab17" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "98d074de-5b21-4f84-96b2-a889453da7ec" + }, + "attachedElementGuid" : { + "value" : "ed51d75b-cf4b-43c9-8d8f-fcdf799aab17" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "98d074de-5b21-4f84-96b2-a889453da7ec" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "98d074de-5b21-4f84-96b2-a889453da7ec" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "98d074de-5b21-4f84-96b2-a889453da7ec" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "98d074de-5b21-4f84-96b2-a889453da7ec" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 93.0601, + "elementName" : "Stay (93.0601)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "93772c63-b41c-4233-b85d-0e9d625c8a82" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "93772c63-b41c-4233-b85d-0e9d625c8a82" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "93772c63-b41c-4233-b85d-0e9d625c8a82" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "93772c63-b41c-4233-b85d-0e9d625c8a82" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bf4999dd-a0fc-47af-9f1b-e18fb83bcd77" + }, + "attachedElementGuid" : { + "value" : "93772c63-b41c-4233-b85d-0e9d625c8a82" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "bf4999dd-a0fc-47af-9f1b-e18fb83bcd77" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bf4999dd-a0fc-47af-9f1b-e18fb83bcd77" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "bf4999dd-a0fc-47af-9f1b-e18fb83bcd77" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "bf4999dd-a0fc-47af-9f1b-e18fb83bcd77" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 93.3901, + "elementName" : "Tap (93.3901)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9dfd8a30-907f-4c48-afc4-88ee5c5ceb30" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9dfd8a30-907f-4c48-afc4-88ee5c5ceb30" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "9dfd8a30-907f-4c48-afc4-88ee5c5ceb30" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "9dfd8a30-907f-4c48-afc4-88ee5c5ceb30" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "617549d4-75b3-42ab-a645-732303297f04" + }, + "attachedElementGuid" : { + "value" : "9dfd8a30-907f-4c48-afc4-88ee5c5ceb30" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "617549d4-75b3-42ab-a645-732303297f04" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "617549d4-75b3-42ab-a645-732303297f04" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "617549d4-75b3-42ab-a645-732303297f04" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "617549d4-75b3-42ab-a645-732303297f04" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeEffectsCollection_BM,Assembly-CSharp", + "time" : 91.89, + "elementName" : "New Time Effects Collection", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6ca8a072-3ed4-402f-bd6d-784df544536b" + }, + "attachedElementGuid" : { + "value" : "617549d4-75b3-42ab-a645-732303297f04" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6ca8a072-3ed4-402f-bd6d-784df544536b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Prior":[ + + ],"Default":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMRippleEffect_BM,Assembly-CSharp", + "rippleTime" : 2, + "positionOffset" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "eulerAngles" : { + "x" : -10, + "y" : 0, + "z" : 0 + }, + "scale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "emissionColor" : { + "r" : 0.5, + "g" : 0.7, + "b" : 1, + "a" : 1 + }, + "emissionIntensity" : 1, + "effectTime" : 0 + } + ],"Late":[ + + ] + }, + "attachedElementGuid" : { + "value" : "6ca8a072-3ed4-402f-bd6d-784df544536b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 93.2251, + "elementName" : "Stay (93.2251)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3bc9ac6d-1030-4c01-84b6-e84f71ffccac" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3bc9ac6d-1030-4c01-84b6-e84f71ffccac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "3bc9ac6d-1030-4c01-84b6-e84f71ffccac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "3bc9ac6d-1030-4c01-84b6-e84f71ffccac" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a91adba7-8da5-4d7b-8563-075fd5cd52b4" + }, + "attachedElementGuid" : { + "value" : "3bc9ac6d-1030-4c01-84b6-e84f71ffccac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a91adba7-8da5-4d7b-8563-075fd5cd52b4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a91adba7-8da5-4d7b-8563-075fd5cd52b4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a91adba7-8da5-4d7b-8563-075fd5cd52b4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "a91adba7-8da5-4d7b-8563-075fd5cd52b4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 93.3075943, + "elementName" : "Stay (93.30759)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1f7f424c-da65-478b-8147-5e27a5829fc3" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1f7f424c-da65-478b-8147-5e27a5829fc3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "1f7f424c-da65-478b-8147-5e27a5829fc3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "1f7f424c-da65-478b-8147-5e27a5829fc3" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5a10402f-8ef8-4afa-a672-00a55cf0c62e" + }, + "attachedElementGuid" : { + "value" : "1f7f424c-da65-478b-8147-5e27a5829fc3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5a10402f-8ef8-4afa-a672-00a55cf0c62e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5a10402f-8ef8-4afa-a672-00a55cf0c62e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5a10402f-8ef8-4afa-a672-00a55cf0c62e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "5a10402f-8ef8-4afa-a672-00a55cf0c62e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 93.5551, + "elementName" : "Stay (93.5551)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "56c5d101-acac-4b37-8b3a-78fdf34feee9" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "56c5d101-acac-4b37-8b3a-78fdf34feee9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "56c5d101-acac-4b37-8b3a-78fdf34feee9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "56c5d101-acac-4b37-8b3a-78fdf34feee9" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "df97272d-6cf2-4735-a6f2-e6fc4e643952" + }, + "attachedElementGuid" : { + "value" : "56c5d101-acac-4b37-8b3a-78fdf34feee9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "df97272d-6cf2-4735-a6f2-e6fc4e643952" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "df97272d-6cf2-4735-a6f2-e6fc4e643952" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "df97272d-6cf2-4735-a6f2-e6fc4e643952" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "df97272d-6cf2-4735-a6f2-e6fc4e643952" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 93.6375961, + "elementName" : "Stay (93.6376)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a308c23b-58d2-4b48-a6b1-71a4aa429fc7" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a308c23b-58d2-4b48-a6b1-71a4aa429fc7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "a308c23b-58d2-4b48-a6b1-71a4aa429fc7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "a308c23b-58d2-4b48-a6b1-71a4aa429fc7" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "48b2eec1-cbac-4df1-82bb-bf90f6459cf7" + }, + "attachedElementGuid" : { + "value" : "a308c23b-58d2-4b48-a6b1-71a4aa429fc7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "48b2eec1-cbac-4df1-82bb-bf90f6459cf7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "48b2eec1-cbac-4df1-82bb-bf90f6459cf7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "48b2eec1-cbac-4df1-82bb-bf90f6459cf7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "48b2eec1-cbac-4df1-82bb-bf90f6459cf7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 93.7201, + "elementName" : "Stay (93.7201)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cca5f503-a128-44ba-a7df-b626ad44d046" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "cca5f503-a128-44ba-a7df-b626ad44d046" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "cca5f503-a128-44ba-a7df-b626ad44d046" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "cca5f503-a128-44ba-a7df-b626ad44d046" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e4450f32-c27c-46e5-81b7-c0b0f41640e1" + }, + "attachedElementGuid" : { + "value" : "cca5f503-a128-44ba-a7df-b626ad44d046" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e4450f32-c27c-46e5-81b7-c0b0f41640e1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e4450f32-c27c-46e5-81b7-c0b0f41640e1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e4450f32-c27c-46e5-81b7-c0b0f41640e1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "e4450f32-c27c-46e5-81b7-c0b0f41640e1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 93.82986, + "elementName" : "Stay (93.82986)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b70890a7-bb53-445c-9887-911ac54c6d46" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b70890a7-bb53-445c-9887-911ac54c6d46" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "b70890a7-bb53-445c-9887-911ac54c6d46" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "b70890a7-bb53-445c-9887-911ac54c6d46" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "44ac8b46-670b-4d29-8b09-cf9f4c411b4a" + }, + "attachedElementGuid" : { + "value" : "b70890a7-bb53-445c-9887-911ac54c6d46" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "44ac8b46-670b-4d29-8b09-cf9f4c411b4a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "44ac8b46-670b-4d29-8b09-cf9f4c411b4a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "44ac8b46-670b-4d29-8b09-cf9f4c411b4a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "44ac8b46-670b-4d29-8b09-cf9f4c411b4a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 93.9398651, + "elementName" : "Stay (93.93987)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e3765e45-c238-48b0-8f59-440edc1e934a" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e3765e45-c238-48b0-8f59-440edc1e934a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "e3765e45-c238-48b0-8f59-440edc1e934a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "e3765e45-c238-48b0-8f59-440edc1e934a" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f399d625-601a-41ba-9d6f-561ce3687810" + }, + "attachedElementGuid" : { + "value" : "e3765e45-c238-48b0-8f59-440edc1e934a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f399d625-601a-41ba-9d6f-561ce3687810" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f399d625-601a-41ba-9d6f-561ce3687810" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f399d625-601a-41ba-9d6f-561ce3687810" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "f399d625-601a-41ba-9d6f-561ce3687810" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 94.0498657, + "elementName" : "Stay (94.04987)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4c5523c2-233a-4c3f-83a8-3feff9490ccf" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4c5523c2-233a-4c3f-83a8-3feff9490ccf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "4c5523c2-233a-4c3f-83a8-3feff9490ccf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "4c5523c2-233a-4c3f-83a8-3feff9490ccf" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "15f39ba0-56fe-46dd-a110-2a43fad8f761" + }, + "attachedElementGuid" : { + "value" : "4c5523c2-233a-4c3f-83a8-3feff9490ccf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "15f39ba0-56fe-46dd-a110-2a43fad8f761" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "15f39ba0-56fe-46dd-a110-2a43fad8f761" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "15f39ba0-56fe-46dd-a110-2a43fad8f761" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "15f39ba0-56fe-46dd-a110-2a43fad8f761" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 94.15987, + "elementName" : "Stay (94.15987)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5c66ad2d-70c0-40b9-afb6-5c656d79887d" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5c66ad2d-70c0-40b9-afb6-5c656d79887d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "5c66ad2d-70c0-40b9-afb6-5c656d79887d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "5c66ad2d-70c0-40b9-afb6-5c656d79887d" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "426aceea-c796-4bbc-94c7-081eab88de0d" + }, + "attachedElementGuid" : { + "value" : "5c66ad2d-70c0-40b9-afb6-5c656d79887d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "426aceea-c796-4bbc-94c7-081eab88de0d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "426aceea-c796-4bbc-94c7-081eab88de0d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "426aceea-c796-4bbc-94c7-081eab88de0d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "426aceea-c796-4bbc-94c7-081eab88de0d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 94.2698746, + "elementName" : "Stay (94.26987)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4ca4c429-8340-4365-a300-8e9fa244b78a" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4ca4c429-8340-4365-a300-8e9fa244b78a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "4ca4c429-8340-4365-a300-8e9fa244b78a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "4ca4c429-8340-4365-a300-8e9fa244b78a" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a7aaf59c-0e5b-4483-b739-2d8b9cc1dbf7" + }, + "attachedElementGuid" : { + "value" : "4ca4c429-8340-4365-a300-8e9fa244b78a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a7aaf59c-0e5b-4483-b739-2d8b9cc1dbf7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a7aaf59c-0e5b-4483-b739-2d8b9cc1dbf7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a7aaf59c-0e5b-4483-b739-2d8b9cc1dbf7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "a7aaf59c-0e5b-4483-b739-2d8b9cc1dbf7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 94.3798752, + "elementName" : "Tap (94.37988)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "74a0536d-72c1-4081-ba20-6ddb6c3cb905" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "74a0536d-72c1-4081-ba20-6ddb6c3cb905" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "74a0536d-72c1-4081-ba20-6ddb6c3cb905" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "74a0536d-72c1-4081-ba20-6ddb6c3cb905" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3c9d61ec-110b-4b17-b4c4-551d52184360" + }, + "attachedElementGuid" : { + "value" : "74a0536d-72c1-4081-ba20-6ddb6c3cb905" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3c9d61ec-110b-4b17-b4c4-551d52184360" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3c9d61ec-110b-4b17-b4c4-551d52184360" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3c9d61ec-110b-4b17-b4c4-551d52184360" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "3c9d61ec-110b-4b17-b4c4-551d52184360" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeEffectsCollection_BM,Assembly-CSharp", + "time" : 92.88, + "elementName" : "New Time Effects Collection", + "tags" : [ + + ], + "elementGuid" : { + "value" : "83eb5b06-2d8d-4766-8164-91875d2243ca" + }, + "attachedElementGuid" : { + "value" : "3c9d61ec-110b-4b17-b4c4-551d52184360" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "83eb5b06-2d8d-4766-8164-91875d2243ca" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Prior":[ + + ],"Default":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMRippleEffect_BM,Assembly-CSharp", + "rippleTime" : 2, + "positionOffset" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "eulerAngles" : { + "x" : -10, + "y" : 0, + "z" : 0 + }, + "scale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "emissionColor" : { + "r" : 0.5, + "g" : 0.7, + "b" : 1, + "a" : 1 + }, + "emissionIntensity" : 1, + "effectTime" : 0 + } + ],"Late":[ + + ] + }, + "attachedElementGuid" : { + "value" : "83eb5b06-2d8d-4766-8164-91875d2243ca" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 95.0398941, + "elementName" : "Stay (95.03989)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8dc17387-e636-47ee-ad2d-a605170ed8ee" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8dc17387-e636-47ee-ad2d-a605170ed8ee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "8dc17387-e636-47ee-ad2d-a605170ed8ee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "8dc17387-e636-47ee-ad2d-a605170ed8ee" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bedb9d6b-9a39-42e4-ad34-fc86b62e1195" + }, + "attachedElementGuid" : { + "value" : "8dc17387-e636-47ee-ad2d-a605170ed8ee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "bedb9d6b-9a39-42e4-ad34-fc86b62e1195" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bedb9d6b-9a39-42e4-ad34-fc86b62e1195" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "bedb9d6b-9a39-42e4-ad34-fc86b62e1195" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "bedb9d6b-9a39-42e4-ad34-fc86b62e1195" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 94.4626, + "elementName" : "Stay (94.4626)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9ca91d2d-6641-4dc1-b381-58df04de4f0b" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9ca91d2d-6641-4dc1-b381-58df04de4f0b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "9ca91d2d-6641-4dc1-b381-58df04de4f0b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "9ca91d2d-6641-4dc1-b381-58df04de4f0b" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b0391fec-1f14-486c-a414-b80bb39f8e2f" + }, + "attachedElementGuid" : { + "value" : "9ca91d2d-6641-4dc1-b381-58df04de4f0b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b0391fec-1f14-486c-a414-b80bb39f8e2f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b0391fec-1f14-486c-a414-b80bb39f8e2f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b0391fec-1f14-486c-a414-b80bb39f8e2f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "b0391fec-1f14-486c-a414-b80bb39f8e2f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 94.5451, + "elementName" : "Stay (94.5451)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d319f6ac-29d0-4e4e-a664-21c713bd2050" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d319f6ac-29d0-4e4e-a664-21c713bd2050" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "d319f6ac-29d0-4e4e-a664-21c713bd2050" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "d319f6ac-29d0-4e4e-a664-21c713bd2050" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2d712426-259f-4b31-81db-c67a45527bd6" + }, + "attachedElementGuid" : { + "value" : "d319f6ac-29d0-4e4e-a664-21c713bd2050" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2d712426-259f-4b31-81db-c67a45527bd6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2d712426-259f-4b31-81db-c67a45527bd6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "2d712426-259f-4b31-81db-c67a45527bd6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "2d712426-259f-4b31-81db-c67a45527bd6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 94.7101, + "elementName" : "Stay (94.7101)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8b5e3024-4c00-4cdc-b5ed-70714c8c8fa0" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8b5e3024-4c00-4cdc-b5ed-70714c8c8fa0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "8b5e3024-4c00-4cdc-b5ed-70714c8c8fa0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "8b5e3024-4c00-4cdc-b5ed-70714c8c8fa0" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "79a30c97-4384-472e-8939-f79174fe057b" + }, + "attachedElementGuid" : { + "value" : "8b5e3024-4c00-4cdc-b5ed-70714c8c8fa0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "79a30c97-4384-472e-8939-f79174fe057b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "79a30c97-4384-472e-8939-f79174fe057b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "79a30c97-4384-472e-8939-f79174fe057b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "79a30c97-4384-472e-8939-f79174fe057b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 94.7925949, + "elementName" : "Stay (94.79259)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e9a3c1fe-45d5-4bb1-9959-bdeafa535687" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e9a3c1fe-45d5-4bb1-9959-bdeafa535687" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "e9a3c1fe-45d5-4bb1-9959-bdeafa535687" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "e9a3c1fe-45d5-4bb1-9959-bdeafa535687" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e5ef0e58-8e1b-4fb0-8ab1-a56b174ddf43" + }, + "attachedElementGuid" : { + "value" : "e9a3c1fe-45d5-4bb1-9959-bdeafa535687" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e5ef0e58-8e1b-4fb0-8ab1-a56b174ddf43" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e5ef0e58-8e1b-4fb0-8ab1-a56b174ddf43" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e5ef0e58-8e1b-4fb0-8ab1-a56b174ddf43" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "e5ef0e58-8e1b-4fb0-8ab1-a56b174ddf43" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 94.8751, + "elementName" : "Stay (94.8751)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f0499021-abe0-4db4-992c-2af5864f12dc" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f0499021-abe0-4db4-992c-2af5864f12dc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "f0499021-abe0-4db4-992c-2af5864f12dc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "f0499021-abe0-4db4-992c-2af5864f12dc" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "10249e8c-3fef-479a-975e-b7344ddd15e2" + }, + "attachedElementGuid" : { + "value" : "f0499021-abe0-4db4-992c-2af5864f12dc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "10249e8c-3fef-479a-975e-b7344ddd15e2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "10249e8c-3fef-479a-975e-b7344ddd15e2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "10249e8c-3fef-479a-975e-b7344ddd15e2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "10249e8c-3fef-479a-975e-b7344ddd15e2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 95.0954742, + "elementName" : "Stay (95.09547)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "14da3a67-7d11-412d-a471-07e21c88798c" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "14da3a67-7d11-412d-a471-07e21c88798c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "14da3a67-7d11-412d-a471-07e21c88798c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "14da3a67-7d11-412d-a471-07e21c88798c" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9d48387a-3034-496d-9646-8a844154b0f4" + }, + "attachedElementGuid" : { + "value" : "14da3a67-7d11-412d-a471-07e21c88798c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9d48387a-3034-496d-9646-8a844154b0f4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9d48387a-3034-496d-9646-8a844154b0f4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "9d48387a-3034-496d-9646-8a844154b0f4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "9d48387a-3034-496d-9646-8a844154b0f4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 95.1504745, + "elementName" : "Stay (95.15047)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6197b72e-ee56-499b-bf8d-0b4bdac51b44" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6197b72e-ee56-499b-bf8d-0b4bdac51b44" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "6197b72e-ee56-499b-bf8d-0b4bdac51b44" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "6197b72e-ee56-499b-bf8d-0b4bdac51b44" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "51462c56-b1c9-4c9a-9736-a284dc9c82ff" + }, + "attachedElementGuid" : { + "value" : "6197b72e-ee56-499b-bf8d-0b4bdac51b44" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "51462c56-b1c9-4c9a-9736-a284dc9c82ff" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "51462c56-b1c9-4c9a-9736-a284dc9c82ff" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "51462c56-b1c9-4c9a-9736-a284dc9c82ff" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "51462c56-b1c9-4c9a-9736-a284dc9c82ff" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 95.20547, + "elementName" : "Stay (95.20547)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b716374a-04e3-40df-a29b-4e530760e3d7" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b716374a-04e3-40df-a29b-4e530760e3d7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "b716374a-04e3-40df-a29b-4e530760e3d7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "b716374a-04e3-40df-a29b-4e530760e3d7" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "25036eca-45d2-41fd-8943-9f8ced911bcb" + }, + "attachedElementGuid" : { + "value" : "b716374a-04e3-40df-a29b-4e530760e3d7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "25036eca-45d2-41fd-8943-9f8ced911bcb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "25036eca-45d2-41fd-8943-9f8ced911bcb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "25036eca-45d2-41fd-8943-9f8ced911bcb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "25036eca-45d2-41fd-8943-9f8ced911bcb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 95.26047, + "elementName" : "Stay (95.26047)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ab9cf6ad-5287-4c17-8b44-bc9b9df3af2c" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ab9cf6ad-5287-4c17-8b44-bc9b9df3af2c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "ab9cf6ad-5287-4c17-8b44-bc9b9df3af2c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "ab9cf6ad-5287-4c17-8b44-bc9b9df3af2c" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "86890263-eff4-45a9-8b5f-7bff3e948ca4" + }, + "attachedElementGuid" : { + "value" : "ab9cf6ad-5287-4c17-8b44-bc9b9df3af2c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "86890263-eff4-45a9-8b5f-7bff3e948ca4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "86890263-eff4-45a9-8b5f-7bff3e948ca4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "86890263-eff4-45a9-8b5f-7bff3e948ca4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "86890263-eff4-45a9-8b5f-7bff3e948ca4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 95.31547, + "elementName" : "Stay (95.31547)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "681b45db-d7b8-4ec9-98eb-1a7b42d055b2" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "681b45db-d7b8-4ec9-98eb-1a7b42d055b2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "681b45db-d7b8-4ec9-98eb-1a7b42d055b2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "681b45db-d7b8-4ec9-98eb-1a7b42d055b2" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f36ae97c-0d10-4902-9f49-39d9696d92a5" + }, + "attachedElementGuid" : { + "value" : "681b45db-d7b8-4ec9-98eb-1a7b42d055b2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f36ae97c-0d10-4902-9f49-39d9696d92a5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f36ae97c-0d10-4902-9f49-39d9696d92a5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f36ae97c-0d10-4902-9f49-39d9696d92a5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "f36ae97c-0d10-4902-9f49-39d9696d92a5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 95.37046, + "elementName" : "Stay (95.37046)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "69859af4-9ac1-4389-a0ed-cca34bf8ad4b" + }, + "attachedElementGuid" : { + "value" : "dc42705c-4008-4258-8246-cbb28972a82f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "69859af4-9ac1-4389-a0ed-cca34bf8ad4b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "69859af4-9ac1-4389-a0ed-cca34bf8ad4b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "69859af4-9ac1-4389-a0ed-cca34bf8ad4b" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a7e3ef2d-c600-45d6-b38d-676a94d080ec" + }, + "attachedElementGuid" : { + "value" : "69859af4-9ac1-4389-a0ed-cca34bf8ad4b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a7e3ef2d-c600-45d6-b38d-676a94d080ec" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a7e3ef2d-c600-45d6-b38d-676a94d080ec" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a7e3ef2d-c600-45d6-b38d-676a94d080ec" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "a7e3ef2d-c600-45d6-b38d-676a94d080ec" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp", + "elementName" : "Shake", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f04716a1-cfa6-4803-94b8-fefd6bb503d6" + }, + "attachedElementGuid" : { + "value" : "f25ebce5-28ba-4585-8075-4a6e847ce93d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f04716a1-cfa6-4803-94b8-fefd6bb503d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f04716a1-cfa6-4803-94b8-fefd6bb503d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeEffectsCollection_BM,Assembly-CSharp", + "time" : 79.53, + "elementName" : "New Time Effects Collection", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c3c3c5fa-4381-4371-924d-131cf583933f" + }, + "attachedElementGuid" : { + "value" : "f04716a1-cfa6-4803-94b8-fefd6bb503d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c3c3c5fa-4381-4371-924d-131cf583933f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Prior":[ + + ],"Default":[ + { + "__type" : "Ichni.RhythmGame.Beatmap.CameraShakeEffect_BM,Assembly-CSharp", + "duration" : 1, + "frequency" : 2, + "amplitudeX" : 0, + "amplitudeY" : 0, + "amplitudeZ" : 0.2, + "effectTime" : 0 + } + ],"Late":[ + + ] + }, + "attachedElementGuid" : { + "value" : "c3c3c5fa-4381-4371-924d-131cf583933f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeEffectsCollection_BM,Assembly-CSharp", + "time" : 80.85, + "elementName" : "New Time Effects Collection", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c9e25721-5d09-402a-9fe8-6c61a187801c" + }, + "attachedElementGuid" : { + "value" : "f04716a1-cfa6-4803-94b8-fefd6bb503d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c9e25721-5d09-402a-9fe8-6c61a187801c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Prior":[ + + ],"Default":[ + { + "__type" : "Ichni.RhythmGame.Beatmap.CameraShakeEffect_BM,Assembly-CSharp", + "duration" : 1, + "frequency" : 3, + "amplitudeX" : 0, + "amplitudeY" : 0, + "amplitudeZ" : 0.3, + "effectTime" : 0 + } + ],"Late":[ + + ] + }, + "attachedElementGuid" : { + "value" : "c9e25721-5d09-402a-9fe8-6c61a187801c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeEffectsCollection_BM,Assembly-CSharp", + "time" : 82.17, + "elementName" : "New Time Effects Collection", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b5e2a7e8-eda7-405c-943a-2c07c8ddbb98" + }, + "attachedElementGuid" : { + "value" : "f04716a1-cfa6-4803-94b8-fefd6bb503d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b5e2a7e8-eda7-405c-943a-2c07c8ddbb98" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Prior":[ + + ],"Default":[ + { + "__type" : "Ichni.RhythmGame.Beatmap.CameraShakeEffect_BM,Assembly-CSharp", + "duration" : 1, + "frequency" : 4, + "amplitudeX" : 0, + "amplitudeY" : 0, + "amplitudeZ" : 0.4, + "effectTime" : 0 + } + ],"Late":[ + + ] + }, + "attachedElementGuid" : { + "value" : "b5e2a7e8-eda7-405c-943a-2c07c8ddbb98" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeEffectsCollection_BM,Assembly-CSharp", + "time" : 83.49, + "elementName" : "New Time Effects Collection", + "tags" : [ + + ], + "elementGuid" : { + "value" : "60bc7371-ba43-4f75-9082-2e7f3d5b72ea" + }, + "attachedElementGuid" : { + "value" : "f04716a1-cfa6-4803-94b8-fefd6bb503d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "60bc7371-ba43-4f75-9082-2e7f3d5b72ea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Prior":[ + + ],"Default":[ + { + "__type" : "Ichni.RhythmGame.Beatmap.CameraShakeEffect_BM,Assembly-CSharp", + "duration" : 1, + "frequency" : 5, + "amplitudeX" : 0.1, + "amplitudeY" : 0, + "amplitudeZ" : 0.5, + "effectTime" : 0 + } + ],"Late":[ + + ] + }, + "attachedElementGuid" : { + "value" : "60bc7371-ba43-4f75-9082-2e7f3d5b72ea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeEffectsCollection_BM,Assembly-CSharp", + "time" : 84.81, + "elementName" : "New Time Effects Collection", + "tags" : [ + + ], + "elementGuid" : { + "value" : "faa856c5-190c-471d-a033-d4aa2f028b67" + }, + "attachedElementGuid" : { + "value" : "f04716a1-cfa6-4803-94b8-fefd6bb503d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "faa856c5-190c-471d-a033-d4aa2f028b67" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Prior":[ + + ],"Default":[ + { + "__type" : "Ichni.RhythmGame.Beatmap.CameraShakeEffect_BM,Assembly-CSharp", + "duration" : 1, + "frequency" : 6, + "amplitudeX" : 0.1, + "amplitudeY" : 0, + "amplitudeZ" : 0.6, + "effectTime" : 0 + } + ],"Late":[ + + ] + }, + "attachedElementGuid" : { + "value" : "faa856c5-190c-471d-a033-d4aa2f028b67" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeEffectsCollection_BM,Assembly-CSharp", + "time" : 86.13, + "elementName" : "New Time Effects Collection", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4277b7d9-0bd6-4be1-90ba-484e4141752d" + }, + "attachedElementGuid" : { + "value" : "f04716a1-cfa6-4803-94b8-fefd6bb503d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4277b7d9-0bd6-4be1-90ba-484e4141752d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Prior":[ + + ],"Default":[ + { + "__type" : "Ichni.RhythmGame.Beatmap.CameraShakeEffect_BM,Assembly-CSharp", + "duration" : 1, + "frequency" : 7, + "amplitudeX" : 0.1, + "amplitudeY" : 0, + "amplitudeZ" : 0.7, + "effectTime" : 0 + } + ],"Late":[ + + ] + }, + "attachedElementGuid" : { + "value" : "4277b7d9-0bd6-4be1-90ba-484e4141752d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeEffectsCollection_BM,Assembly-CSharp", + "time" : 87.45, + "elementName" : "New Time Effects Collection", + "tags" : [ + + ], + "elementGuid" : { + "value" : "21c0b8d3-6d49-4c55-8680-433a92cff8e6" + }, + "attachedElementGuid" : { + "value" : "f04716a1-cfa6-4803-94b8-fefd6bb503d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "21c0b8d3-6d49-4c55-8680-433a92cff8e6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Prior":[ + + ],"Default":[ + { + "__type" : "Ichni.RhythmGame.Beatmap.CameraShakeEffect_BM,Assembly-CSharp", + "duration" : 1, + "frequency" : 8, + "amplitudeX" : 0.1, + "amplitudeY" : 0, + "amplitudeZ" : 0.8, + "effectTime" : 0 + } + ],"Late":[ + + ] + }, + "attachedElementGuid" : { + "value" : "21c0b8d3-6d49-4c55-8680-433a92cff8e6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeEffectsCollection_BM,Assembly-CSharp", + "time" : 88.6, + "elementName" : "New Time Effects Collection", + "tags" : [ + + ], + "elementGuid" : { + "value" : "185dfd56-9007-427e-a89e-dc25cd02be31" + }, + "attachedElementGuid" : { + "value" : "f04716a1-cfa6-4803-94b8-fefd6bb503d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "185dfd56-9007-427e-a89e-dc25cd02be31" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Prior":[ + + ],"Default":[ + { + "__type" : "Ichni.RhythmGame.Beatmap.CameraShakeEffect_BM,Assembly-CSharp", + "duration" : 1, + "frequency" : 9, + "amplitudeX" : 0.2, + "amplitudeY" : 0, + "amplitudeZ" : 0.9, + "effectTime" : 0 + } + ],"Late":[ + + ] + }, + "attachedElementGuid" : { + "value" : "185dfd56-9007-427e-a89e-dc25cd02be31" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeEffectsCollection_BM,Assembly-CSharp", + "time" : 89.76, + "elementName" : "New Time Effects Collection", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5978e1a1-5d99-45f7-887a-85981f11039a" + }, + "attachedElementGuid" : { + "value" : "f04716a1-cfa6-4803-94b8-fefd6bb503d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5978e1a1-5d99-45f7-887a-85981f11039a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Prior":[ + + ],"Default":[ + { + "__type" : "Ichni.RhythmGame.Beatmap.CameraShakeEffect_BM,Assembly-CSharp", + "duration" : 1, + "frequency" : 10, + "amplitudeX" : 0.2, + "amplitudeY" : 0, + "amplitudeZ" : 1, + "effectTime" : 0 + } + ],"Late":[ + + ] + }, + "attachedElementGuid" : { + "value" : "5978e1a1-5d99-45f7-887a-85981f11039a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeEffectsCollection_BM,Assembly-CSharp", + "time" : 90.75, + "elementName" : "New Time Effects Collection", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cd341992-5106-43c1-9d89-b902812f43c4" + }, + "attachedElementGuid" : { + "value" : "f04716a1-cfa6-4803-94b8-fefd6bb503d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "cd341992-5106-43c1-9d89-b902812f43c4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Prior":[ + + ],"Default":[ + { + "__type" : "Ichni.RhythmGame.Beatmap.CameraShakeEffect_BM,Assembly-CSharp", + "duration" : 0.8, + "frequency" : 11, + "amplitudeX" : 0.2, + "amplitudeY" : 0, + "amplitudeZ" : 1, + "effectTime" : 0 + } + ],"Late":[ + + ] + }, + "attachedElementGuid" : { + "value" : "cd341992-5106-43c1-9d89-b902812f43c4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeEffectsCollection_BM,Assembly-CSharp", + "time" : 91.57, + "elementName" : "New Time Effects Collection", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2f718ad2-f0b9-4564-85fc-42f32346d242" + }, + "attachedElementGuid" : { + "value" : "f04716a1-cfa6-4803-94b8-fefd6bb503d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2f718ad2-f0b9-4564-85fc-42f32346d242" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Prior":[ + + ],"Default":[ + { + "__type" : "Ichni.RhythmGame.Beatmap.CameraShakeEffect_BM,Assembly-CSharp", + "duration" : 0.8, + "frequency" : 12, + "amplitudeX" : 0.2, + "amplitudeY" : 0, + "amplitudeZ" : 1, + "effectTime" : 0 + } + ],"Late":[ + + ] + }, + "attachedElementGuid" : { + "value" : "2f718ad2-f0b9-4564-85fc-42f32346d242" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeEffectsCollection_BM,Assembly-CSharp", + "time" : 92.23, + "elementName" : "New Time Effects Collection", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5925eb66-4973-4355-ae9d-5fe4cdd19c8b" + }, + "attachedElementGuid" : { + "value" : "f04716a1-cfa6-4803-94b8-fefd6bb503d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5925eb66-4973-4355-ae9d-5fe4cdd19c8b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Prior":[ + + ],"Default":[ + { + "__type" : "Ichni.RhythmGame.Beatmap.CameraShakeEffect_BM,Assembly-CSharp", + "duration" : 0.6, + "frequency" : 14, + "amplitudeX" : 0.2, + "amplitudeY" : 0, + "amplitudeZ" : 1, + "effectTime" : 0 + } + ],"Late":[ + + ] + }, + "attachedElementGuid" : { + "value" : "5925eb66-4973-4355-ae9d-5fe4cdd19c8b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeEffectsCollection_BM,Assembly-CSharp", + "time" : 92.73, + "elementName" : "New Time Effects Collection", + "tags" : [ + + ], + "elementGuid" : { + "value" : "05dbc62b-42bb-4e12-8ee2-ead32eaf5244" + }, + "attachedElementGuid" : { + "value" : "f04716a1-cfa6-4803-94b8-fefd6bb503d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "05dbc62b-42bb-4e12-8ee2-ead32eaf5244" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Prior":[ + + ],"Default":[ + { + "__type" : "Ichni.RhythmGame.Beatmap.CameraShakeEffect_BM,Assembly-CSharp", + "duration" : 0.5, + "frequency" : 16, + "amplitudeX" : 0.2, + "amplitudeY" : 0, + "amplitudeZ" : 1, + "effectTime" : 0 + } + ],"Late":[ + + ] + }, + "attachedElementGuid" : { + "value" : "05dbc62b-42bb-4e12-8ee2-ead32eaf5244" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeEffectsCollection_BM,Assembly-CSharp", + "time" : 93.23, + "elementName" : "New Time Effects Collection", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b9aa5abf-ba5c-4859-8efe-f667e67b448a" + }, + "attachedElementGuid" : { + "value" : "f04716a1-cfa6-4803-94b8-fefd6bb503d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b9aa5abf-ba5c-4859-8efe-f667e67b448a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Prior":[ + + ],"Default":[ + { + "__type" : "Ichni.RhythmGame.Beatmap.CameraShakeEffect_BM,Assembly-CSharp", + "duration" : 0.5, + "frequency" : 18, + "amplitudeX" : 0.3, + "amplitudeY" : 0, + "amplitudeZ" : 1, + "effectTime" : 0 + } + ],"Late":[ + + ] + }, + "attachedElementGuid" : { + "value" : "b9aa5abf-ba5c-4859-8efe-f667e67b448a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeEffectsCollection_BM,Assembly-CSharp", + "time" : 93.73, + "elementName" : "New Time Effects Collection", + "tags" : [ + + ], + "elementGuid" : { + "value" : "478a869e-4b06-451f-a6cf-a5af36e24825" + }, + "attachedElementGuid" : { + "value" : "f04716a1-cfa6-4803-94b8-fefd6bb503d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "478a869e-4b06-451f-a6cf-a5af36e24825" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Prior":[ + + ],"Default":[ + { + "__type" : "Ichni.RhythmGame.Beatmap.CameraShakeEffect_BM,Assembly-CSharp", + "duration" : 0.5, + "frequency" : 20, + "amplitudeX" : 0.3, + "amplitudeY" : 0.1, + "amplitudeZ" : 1, + "effectTime" : 0 + } + ],"Late":[ + + ] + }, + "attachedElementGuid" : { + "value" : "478a869e-4b06-451f-a6cf-a5af36e24825" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeEffectsCollection_BM,Assembly-CSharp", + "time" : 94.23, + "elementName" : "New Time Effects Collection", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8779213c-1443-47c1-a03b-86708aaf774a" + }, + "attachedElementGuid" : { + "value" : "f04716a1-cfa6-4803-94b8-fefd6bb503d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8779213c-1443-47c1-a03b-86708aaf774a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Prior":[ + + ],"Default":[ + { + "__type" : "Ichni.RhythmGame.Beatmap.CameraShakeEffect_BM,Assembly-CSharp", + "duration" : 0.5, + "frequency" : 22, + "amplitudeX" : 0.4, + "amplitudeY" : 0.2, + "amplitudeZ" : 1, + "effectTime" : 0 + } + ],"Late":[ + + ] + }, + "attachedElementGuid" : { + "value" : "8779213c-1443-47c1-a03b-86708aaf774a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeEffectsCollection_BM,Assembly-CSharp", + "time" : 94.73, + "elementName" : "New Time Effects Collection", + "tags" : [ + + ], + "elementGuid" : { + "value" : "18f5996c-df5f-4932-a3f4-b5ddb18d81b7" + }, + "attachedElementGuid" : { + "value" : "f04716a1-cfa6-4803-94b8-fefd6bb503d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "18f5996c-df5f-4932-a3f4-b5ddb18d81b7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Prior":[ + + ],"Default":[ + { + "__type" : "Ichni.RhythmGame.Beatmap.CameraShakeEffect_BM,Assembly-CSharp", + "duration" : 0.5, + "frequency" : 25, + "amplitudeX" : 0.5, + "amplitudeY" : 0.3, + "amplitudeZ" : 1, + "effectTime" : 0 + } + ],"Late":[ + + ] + }, + "attachedElementGuid" : { + "value" : "18f5996c-df5f-4932-a3f4-b5ddb18d81b7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeEffectsCollection_BM,Assembly-CSharp", + "time" : 95.23, + "elementName" : "New Time Effects Collection", + "tags" : [ + + ], + "elementGuid" : { + "value" : "310be5bc-d965-4f54-9a45-5979b79722ea" + }, + "attachedElementGuid" : { + "value" : "f04716a1-cfa6-4803-94b8-fefd6bb503d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "310be5bc-d965-4f54-9a45-5979b79722ea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Prior":[ + + ],"Default":[ + { + "__type" : "Ichni.RhythmGame.Beatmap.CameraShakeEffect_BM,Assembly-CSharp", + "duration" : 0.25, + "frequency" : 30, + "amplitudeX" : 0.6, + "amplitudeY" : 0.3, + "amplitudeZ" : 1, + "effectTime" : 0 + } + ],"Late":[ + + ] + }, + "attachedElementGuid" : { + "value" : "310be5bc-d965-4f54-9a45-5979b79722ea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "Note_guide", + "tags" : [ + + ], + "elementGuid" : { + "value" : "58d23093-c203-4e4e-b37e-ae9ff2caa7f8" + }, + "attachedElementGuid" : { + "value" : "f25ebce5-28ba-4585-8075-4a6e847ce93d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "58d23093-c203-4e4e-b37e-ae9ff2caa7f8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "58d23093-c203-4e4e-b37e-ae9ff2caa7f8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 0, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "58d23093-c203-4e4e-b37e-ae9ff2caa7f8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 78.03, + "trackEndTime" : 93.87, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "58d23093-c203-4e4e-b37e-ae9ff2caa7f8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3b32d540-8455-4479-af61-a740e897202c" + }, + "attachedElementGuid" : { + "value" : "58d23093-c203-4e4e-b37e-ae9ff2caa7f8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3b32d540-8455-4479-af61-a740e897202c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3b32d540-8455-4479-af61-a740e897202c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3b32d540-8455-4479-af61-a740e897202c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ba1584d2-17f4-46f5-b743-43cf5d94dbe9" + }, + "attachedElementGuid" : { + "value" : "58d23093-c203-4e4e-b37e-ae9ff2caa7f8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 720 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ba1584d2-17f4-46f5-b743-43cf5d94dbe9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ba1584d2-17f4-46f5-b743-43cf5d94dbe9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ba1584d2-17f4-46f5-b743-43cf5d94dbe9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d02f68cc-42e5-4cba-b02e-75114082fca2" + }, + "attachedElementGuid" : { + "value" : "58d23093-c203-4e4e-b37e-ae9ff2caa7f8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d02f68cc-42e5-4cba-b02e-75114082fca2" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : false, + "time" : 79.53 + },{ + "value" : false, + "time" : 98.34 + } + ] + }, + "enableProcessTime" : 0, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + { + "startValue" : 79.53, + "endValue" : 5, + "startTime" : 47.85, + "endTime" : 5, + "animationCurveType" : 0 + } + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bf3868bb-e2d0-4da9-80a0-4b3d4028d268" + }, + "attachedElementGuid" : { + "value" : "d02f68cc-42e5-4cba-b02e-75114082fca2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "bf3868bb-e2d0-4da9-80a0-4b3d4028d268" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bf3868bb-e2d0-4da9-80a0-4b3d4028d268" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0.5, + "g" : 0.8, + "b" : 1, + "a" : 0.5 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "bf3868bb-e2d0-4da9-80a0-4b3d4028d268" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeEffectsCollection_BM,Assembly-CSharp", + "time" : 79.53, + "elementName" : "Black", + "tags" : [ + + ], + "elementGuid" : { + "value" : "01b4f642-eed3-474d-9ea7-432f4906de58" + }, + "attachedElementGuid" : { + "value" : "f25ebce5-28ba-4585-8075-4a6e847ce93d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "01b4f642-eed3-474d-9ea7-432f4906de58" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Prior":[ + + ],"Default":[ + { + "__type" : "Ichni.RhythmGame.Beatmap.VignetteEffect_BM,Assembly-CSharp", + "duration" : 19.8, + "peak" : 0.8, + "smoothness" : 0.4, + "color" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "intensityCurve" : { + "keys" : [ + { + "time" : 0, + "value" : 0, + "inTangent" : 0, + "outTangent" : 0 + },{ + "time" : 0.1, + "value" : 1, + "inTangent" : 0, + "outTangent" : 0 + },{ + "time" : 0.9, + "value" : 1, + "inTangent" : 0, + "outTangent" : 0 + },{ + "time" : 1, + "value" : 0, + "inTangent" : 0, + "outTangent" : 0 + } + ], + "preWrapMode" : 8, + "postWrapMode" : 8 + }, + "effectTime" : 0 + } + ],"Late":[ + + ] + }, + "attachedElementGuid" : { + "value" : "01b4f642-eed3-474d-9ea7-432f4906de58" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp", + "elementName" : "Rain(0,-15,60)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ffbf9155-2fdc-4258-b910-d11a311a247d" + }, + "attachedElementGuid" : { + "value" : "f25ebce5-28ba-4585-8075-4a6e847ce93d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : -15, + "z" : 60 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ffbf9155-2fdc-4258-b910-d11a311a247d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ffbf9155-2fdc-4258-b910-d11a311a247d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "r1", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1146bcfe-2154-4440-9f7a-abd21c474e9a" + }, + "attachedElementGuid" : { + "value" : "ffbf9155-2fdc-4258-b910-d11a311a247d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 180 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "1146bcfe-2154-4440-9f7a-abd21c474e9a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1146bcfe-2154-4440-9f7a-abd21c474e9a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 0, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "1146bcfe-2154-4440-9f7a-abd21c474e9a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 0, + "trackEndTime" : 3, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "1146bcfe-2154-4440-9f7a-abd21c474e9a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3e0fc073-c680-4118-a916-29fca4b607f7" + }, + "attachedElementGuid" : { + "value" : "1146bcfe-2154-4440-9f7a-abd21c474e9a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -3, + "y" : 30, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3e0fc073-c680-4118-a916-29fca4b607f7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3e0fc073-c680-4118-a916-29fca4b607f7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3e0fc073-c680-4118-a916-29fca4b607f7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cc0c9dce-0cc3-4177-a5ed-68b18c67d10a" + }, + "attachedElementGuid" : { + "value" : "1146bcfe-2154-4440-9f7a-abd21c474e9a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "cc0c9dce-0cc3-4177-a5ed-68b18c67d10a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "cc0c9dce-0cc3-4177-a5ed-68b18c67d10a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "cc0c9dce-0cc3-4177-a5ed-68b18c67d10a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ParticleTracker_BM,Assembly-CSharp", + "prewarm" : false, + "playTime" : 72, + "stopTime" : 84, + "is3D" : true, + "width" : 40, + "extendDirection" : { + "x" : 2, + "y" : 0, + "z" : 8 + }, + "density" : 80, + "lifeTime" : 3, + "isAutoOrient" : false, + "particleRotation" : { + "x" : 0, + "y" : 0, + "z" : -10 + }, + "materialThemeBundleName" : "basic", + "materialName" : "Basic_Track_Segments", + "elementName" : "New Particle Tracker", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5a312623-d0a0-4c42-adfb-7a44cf7aedd1" + }, + "attachedElementGuid" : { + "value" : "1146bcfe-2154-4440-9f7a-abd21c474e9a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0.3858937, + "g" : 0.4940961, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "5a312623-d0a0-4c42-adfb-7a44cf7aedd1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "r2", + "tags" : [ + + ], + "elementGuid" : { + "value" : "83d1f489-1d4c-41f1-b6d0-9cb43ec9a75f" + }, + "attachedElementGuid" : { + "value" : "ffbf9155-2fdc-4258-b910-d11a311a247d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 540 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "83d1f489-1d4c-41f1-b6d0-9cb43ec9a75f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "83d1f489-1d4c-41f1-b6d0-9cb43ec9a75f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 0, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "83d1f489-1d4c-41f1-b6d0-9cb43ec9a75f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 0, + "trackEndTime" : 3, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "83d1f489-1d4c-41f1-b6d0-9cb43ec9a75f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c98ef703-94da-48c6-93f2-cbd09eafb4ea" + }, + "attachedElementGuid" : { + "value" : "83d1f489-1d4c-41f1-b6d0-9cb43ec9a75f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -3, + "y" : 30, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c98ef703-94da-48c6-93f2-cbd09eafb4ea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c98ef703-94da-48c6-93f2-cbd09eafb4ea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c98ef703-94da-48c6-93f2-cbd09eafb4ea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f1cbdc31-10df-47d3-9780-1893f995fb5c" + }, + "attachedElementGuid" : { + "value" : "83d1f489-1d4c-41f1-b6d0-9cb43ec9a75f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f1cbdc31-10df-47d3-9780-1893f995fb5c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f1cbdc31-10df-47d3-9780-1893f995fb5c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f1cbdc31-10df-47d3-9780-1893f995fb5c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ParticleTracker_BM,Assembly-CSharp", + "prewarm" : false, + "playTime" : 80, + "stopTime" : 96, + "is3D" : true, + "width" : 20, + "extendDirection" : { + "x" : 2, + "y" : 0, + "z" : 8 + }, + "density" : 80, + "lifeTime" : 3, + "isAutoOrient" : false, + "particleRotation" : { + "x" : 0, + "y" : 0, + "z" : -10 + }, + "materialThemeBundleName" : "basic", + "materialName" : "Basic_Track_Segments", + "elementName" : "New Particle Tracker", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b8b19548-222a-4ad4-8468-c41f7b11899b" + }, + "attachedElementGuid" : { + "value" : "83d1f489-1d4c-41f1-b6d0-9cb43ec9a75f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0.3858937, + "g" : 0.4940961, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "b8b19548-222a-4ad4-8468-c41f7b11899b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp", + "elementName" : "Ripple", + "tags" : [ + + ], + "elementGuid" : { + "value" : "192c76f0-4ba4-4d2e-9e50-fbb548037ea1" + }, + "attachedElementGuid" : { + "value" : "f25ebce5-28ba-4585-8075-4a6e847ce93d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "192c76f0-4ba4-4d2e-9e50-fbb548037ea1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "192c76f0-4ba4-4d2e-9e50-fbb548037ea1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeEffectsCollection_BM,Assembly-CSharp", + "time" : 95.37, + "elementName" : "New Time Effects Collection", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e53caca2-1d28-4269-91ab-7277f7281939" + }, + "attachedElementGuid" : { + "value" : "192c76f0-4ba4-4d2e-9e50-fbb548037ea1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 765 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e53caca2-1d28-4269-91ab-7277f7281939" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Prior":[ + + ],"Default":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMRippleEffect_BM,Assembly-CSharp", + "rippleTime" : 2, + "positionOffset" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "eulerAngles" : { + "x" : -10, + "y" : 0, + "z" : 0 + }, + "scale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "emissionColor" : { + "r" : 0.5, + "g" : 0.7, + "b" : 1, + "a" : 1 + }, + "emissionIntensity" : 1, + "effectTime" : 0 + } + ],"Late":[ + + ] + }, + "attachedElementGuid" : { + "value" : "e53caca2-1d28-4269-91ab-7277f7281939" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeEffectsCollection_BM,Assembly-CSharp", + "time" : 96.36, + "elementName" : "New Time Effects Collection", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c03fee2f-787a-4270-9856-67850c6ac25a" + }, + "attachedElementGuid" : { + "value" : "192c76f0-4ba4-4d2e-9e50-fbb548037ea1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 810 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c03fee2f-787a-4270-9856-67850c6ac25a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Prior":[ + + ],"Default":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMRippleEffect_BM,Assembly-CSharp", + "rippleTime" : 2, + "positionOffset" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "eulerAngles" : { + "x" : -10, + "y" : 0, + "z" : 0 + }, + "scale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "emissionColor" : { + "r" : 0.5, + "g" : 0.7, + "b" : 1, + "a" : 1 + }, + "emissionIntensity" : 1, + "effectTime" : 0 + } + ],"Late":[ + + ] + }, + "attachedElementGuid" : { + "value" : "c03fee2f-787a-4270-9856-67850c6ac25a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeEffectsCollection_BM,Assembly-CSharp", + "time" : 97.35, + "elementName" : "New Time Effects Collection", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ecb3e46f-cd06-43b4-a3f7-87ff3c41a493" + }, + "attachedElementGuid" : { + "value" : "192c76f0-4ba4-4d2e-9e50-fbb548037ea1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 855 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ecb3e46f-cd06-43b4-a3f7-87ff3c41a493" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Prior":[ + + ],"Default":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMRippleEffect_BM,Assembly-CSharp", + "rippleTime" : 2, + "positionOffset" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "eulerAngles" : { + "x" : -10, + "y" : 0, + "z" : 0 + }, + "scale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "emissionColor" : { + "r" : 0.5, + "g" : 0.7, + "b" : 1, + "a" : 1 + }, + "emissionIntensity" : 1, + "effectTime" : 0 + } + ],"Late":[ + + ] + }, + "attachedElementGuid" : { + "value" : "ecb3e46f-cd06-43b4-a3f7-87ff3c41a493" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp", + "elementName" : "P6{98.34-131.01}(0,0,3749)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "be72a124-1762-48a8-af81-2531cd202e9d" + }, + "attachedElementGuid" : { + "value" : "00000000-0000-0000-0000-000000000000" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 3749 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "be72a124-1762-48a8-af81-2531cd202e9d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "be72a124-1762-48a8-af81-2531cd202e9d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp", + "elementName" : "Note", + "tags" : [ + + ], + "elementGuid" : { + "value" : "152d1cd8-fcb0-4ff4-9b56-b874aec31117" + }, + "attachedElementGuid" : { + "value" : "be72a124-1762-48a8-af81-2531cd202e9d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "152d1cd8-fcb0-4ff4-9b56-b874aec31117" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "152d1cd8-fcb0-4ff4-9b56-b874aec31117" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "T1", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + }, + "attachedElementGuid" : { + "value" : "152d1cd8-fcb0-4ff4-9b56-b874aec31117" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 1, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 98.34, + "trackEndTime" : 131.01, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2c79a7f4-4ca8-47ac-abf0-cfa3bd99ff52" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2c79a7f4-4ca8-47ac-abf0-cfa3bd99ff52" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 98.34 + },{ + "value" : false, + "time" : 131.01 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + { + "startValue" : 32.01, + "endValue" : 5, + "startTime" : 16.17, + "endTime" : 5, + "animationCurveType" : 0 + } + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4582fcf5-6b3f-4c7b-89ee-10c08d7369fb" + }, + "attachedElementGuid" : { + "value" : "2c79a7f4-4ca8-47ac-abf0-cfa3bd99ff52" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4582fcf5-6b3f-4c7b-89ee-10c08d7369fb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4582fcf5-6b3f-4c7b-89ee-10c08d7369fb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0.3965093, + "g" : 0.497728825, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "4582fcf5-6b3f-4c7b-89ee-10c08d7369fb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode0", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bc198e5c-520d-4352-945d-83d42e159156" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "bc198e5c-520d-4352-945d-83d42e159156" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bc198e5c-520d-4352-945d-83d42e159156" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "bc198e5c-520d-4352-945d-83d42e159156" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode1", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a4592c67-5141-4503-9fe8-4babe1d69426" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 4, + "z" : 45 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a4592c67-5141-4503-9fe8-4babe1d69426" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a4592c67-5141-4503-9fe8-4babe1d69426" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a4592c67-5141-4503-9fe8-4babe1d69426" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode2", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bf3e23ad-8bc6-44cd-a4ff-e20620603f9a" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 2, + "z" : 90 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "bf3e23ad-8bc6-44cd-a4ff-e20620603f9a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bf3e23ad-8bc6-44cd-a4ff-e20620603f9a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "bf3e23ad-8bc6-44cd-a4ff-e20620603f9a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode3", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ee98aa73-8a57-47b5-86e2-50df6e3bcb40" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -3, + "y" : 0, + "z" : 135 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ee98aa73-8a57-47b5-86e2-50df6e3bcb40" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ee98aa73-8a57-47b5-86e2-50df6e3bcb40" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ee98aa73-8a57-47b5-86e2-50df6e3bcb40" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode4", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cf578fad-05a0-4a81-bee1-c1fa6618b931" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 2, + "z" : 180 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "cf578fad-05a0-4a81-bee1-c1fa6618b931" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "cf578fad-05a0-4a81-bee1-c1fa6618b931" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "cf578fad-05a0-4a81-bee1-c1fa6618b931" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode5", + "tags" : [ + + ], + "elementGuid" : { + "value" : "796bdf3c-780d-475d-972a-db24d6ce5a80" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 4, + "z" : 225 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "796bdf3c-780d-475d-972a-db24d6ce5a80" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "796bdf3c-780d-475d-972a-db24d6ce5a80" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "796bdf3c-780d-475d-972a-db24d6ce5a80" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode6", + "tags" : [ + + ], + "elementGuid" : { + "value" : "31e973a6-b681-4058-af91-61effed2de94" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 2, + "z" : 270 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "31e973a6-b681-4058-af91-61effed2de94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "31e973a6-b681-4058-af91-61effed2de94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "31e973a6-b681-4058-af91-61effed2de94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode7", + "tags" : [ + + ], + "elementGuid" : { + "value" : "12f457f6-5e80-448b-84eb-ab70e849214a" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -3, + "y" : 0, + "z" : 315 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "12f457f6-5e80-448b-84eb-ab70e849214a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "12f457f6-5e80-448b-84eb-ab70e849214a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "12f457f6-5e80-448b-84eb-ab70e849214a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode8", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4ed778e3-cdf9-41b2-bc9e-6e14f1b5e349" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 2, + "z" : 360 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4ed778e3-cdf9-41b2-bc9e-6e14f1b5e349" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4ed778e3-cdf9-41b2-bc9e-6e14f1b5e349" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4ed778e3-cdf9-41b2-bc9e-6e14f1b5e349" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode9", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4f57e82c-1dd8-4b6a-ab7e-3fc9b1c5db43" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 4, + "z" : 405 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4f57e82c-1dd8-4b6a-ab7e-3fc9b1c5db43" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4f57e82c-1dd8-4b6a-ab7e-3fc9b1c5db43" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4f57e82c-1dd8-4b6a-ab7e-3fc9b1c5db43" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode10", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9c826c16-c609-4221-b05b-b026e31c6ab6" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 2, + "z" : 450 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9c826c16-c609-4221-b05b-b026e31c6ab6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9c826c16-c609-4221-b05b-b026e31c6ab6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "9c826c16-c609-4221-b05b-b026e31c6ab6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode11", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c5d2f1fe-7183-4dcd-9ea6-92d964a6aebb" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -3, + "y" : 0, + "z" : 495 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c5d2f1fe-7183-4dcd-9ea6-92d964a6aebb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c5d2f1fe-7183-4dcd-9ea6-92d964a6aebb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c5d2f1fe-7183-4dcd-9ea6-92d964a6aebb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode12", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c725a25f-1e97-46cd-89ea-ff83b580506a" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 2, + "z" : 540 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c725a25f-1e97-46cd-89ea-ff83b580506a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c725a25f-1e97-46cd-89ea-ff83b580506a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c725a25f-1e97-46cd-89ea-ff83b580506a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode13", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8db2a353-0280-4811-9262-99daad745347" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 4, + "z" : 585 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8db2a353-0280-4811-9262-99daad745347" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8db2a353-0280-4811-9262-99daad745347" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8db2a353-0280-4811-9262-99daad745347" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode14", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ba56e6fe-507a-4124-ae39-df8fe36a14de" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 2, + "z" : 630 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ba56e6fe-507a-4124-ae39-df8fe36a14de" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ba56e6fe-507a-4124-ae39-df8fe36a14de" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ba56e6fe-507a-4124-ae39-df8fe36a14de" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode15", + "tags" : [ + + ], + "elementGuid" : { + "value" : "070a31e0-292d-4e16-8236-f4d4ac22af28" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -3, + "y" : 0, + "z" : 675 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "070a31e0-292d-4e16-8236-f4d4ac22af28" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "070a31e0-292d-4e16-8236-f4d4ac22af28" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "070a31e0-292d-4e16-8236-f4d4ac22af28" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode16", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c593242c-5124-4220-83e4-0516aa95ef73" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 2, + "z" : 720 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c593242c-5124-4220-83e4-0516aa95ef73" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c593242c-5124-4220-83e4-0516aa95ef73" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c593242c-5124-4220-83e4-0516aa95ef73" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode17", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6f9e7604-256c-4957-ab57-9f76d4e588ef" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -6, + "y" : 4, + "z" : 765 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6f9e7604-256c-4957-ab57-9f76d4e588ef" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6f9e7604-256c-4957-ab57-9f76d4e588ef" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6f9e7604-256c-4957-ab57-9f76d4e588ef" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode18", + "tags" : [ + + ], + "elementGuid" : { + "value" : "eb361a66-f2a8-4f52-9e1d-6330af92ef4e" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -6, + "y" : 4, + "z" : 810 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "eb361a66-f2a8-4f52-9e1d-6330af92ef4e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "eb361a66-f2a8-4f52-9e1d-6330af92ef4e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "eb361a66-f2a8-4f52-9e1d-6330af92ef4e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode19", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6304729a-05f8-4f77-b868-0879c25dcc69" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 855 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6304729a-05f8-4f77-b868-0879c25dcc69" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6304729a-05f8-4f77-b868-0879c25dcc69" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6304729a-05f8-4f77-b868-0879c25dcc69" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode20", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f91c2637-7161-4bf7-9ca8-579e9f6435dd" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 4, + "y" : 0, + "z" : 900 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f91c2637-7161-4bf7-9ca8-579e9f6435dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f91c2637-7161-4bf7-9ca8-579e9f6435dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f91c2637-7161-4bf7-9ca8-579e9f6435dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode21", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c8674643-8fa5-4358-9049-9884c5ca5098" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -2, + "y" : 2, + "z" : 945 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c8674643-8fa5-4358-9049-9884c5ca5098" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c8674643-8fa5-4358-9049-9884c5ca5098" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c8674643-8fa5-4358-9049-9884c5ca5098" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode22", + "tags" : [ + + ], + "elementGuid" : { + "value" : "25d38cd1-de54-4a24-93dc-d630246eb333" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -6, + "y" : 4, + "z" : 990 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "25d38cd1-de54-4a24-93dc-d630246eb333" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "25d38cd1-de54-4a24-93dc-d630246eb333" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "25d38cd1-de54-4a24-93dc-d630246eb333" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode23", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2ef7d05f-b7c6-4077-a774-15bd94b7a642" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 1035 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2ef7d05f-b7c6-4077-a774-15bd94b7a642" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2ef7d05f-b7c6-4077-a774-15bd94b7a642" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "2ef7d05f-b7c6-4077-a774-15bd94b7a642" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode24", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d4dabeca-52b6-4235-9815-88ac266944b7" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 4, + "y" : 0, + "z" : 1080 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d4dabeca-52b6-4235-9815-88ac266944b7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d4dabeca-52b6-4235-9815-88ac266944b7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d4dabeca-52b6-4235-9815-88ac266944b7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode25", + "tags" : [ + + ], + "elementGuid" : { + "value" : "70c69ed6-09d0-4270-98eb-e3a7b754a587" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -2, + "y" : 2, + "z" : 1125 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "70c69ed6-09d0-4270-98eb-e3a7b754a587" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "70c69ed6-09d0-4270-98eb-e3a7b754a587" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "70c69ed6-09d0-4270-98eb-e3a7b754a587" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode26", + "tags" : [ + + ], + "elementGuid" : { + "value" : "833ef50d-641d-4609-be1a-53533a59e50b" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -6, + "y" : 4, + "z" : 1170 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "833ef50d-641d-4609-be1a-53533a59e50b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "833ef50d-641d-4609-be1a-53533a59e50b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "833ef50d-641d-4609-be1a-53533a59e50b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode27", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d6f909e9-6412-43b0-b807-b9a5a8d71810" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 1215 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d6f909e9-6412-43b0-b807-b9a5a8d71810" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d6f909e9-6412-43b0-b807-b9a5a8d71810" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d6f909e9-6412-43b0-b807-b9a5a8d71810" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode28", + "tags" : [ + + ], + "elementGuid" : { + "value" : "58664606-9fce-4cb1-9e70-02bf7456b2ad" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 4, + "y" : 0, + "z" : 1260 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "58664606-9fce-4cb1-9e70-02bf7456b2ad" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "58664606-9fce-4cb1-9e70-02bf7456b2ad" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "58664606-9fce-4cb1-9e70-02bf7456b2ad" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode29", + "tags" : [ + + ], + "elementGuid" : { + "value" : "89de9c48-7a1f-4877-a092-a8ef9313c7e4" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -2, + "y" : 2, + "z" : 1305 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "89de9c48-7a1f-4877-a092-a8ef9313c7e4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "89de9c48-7a1f-4877-a092-a8ef9313c7e4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "89de9c48-7a1f-4877-a092-a8ef9313c7e4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode30", + "tags" : [ + + ], + "elementGuid" : { + "value" : "76b35b3d-eb6e-4788-b88a-969af542495f" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -6, + "y" : 4, + "z" : 1350 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "76b35b3d-eb6e-4788-b88a-969af542495f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "76b35b3d-eb6e-4788-b88a-969af542495f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "76b35b3d-eb6e-4788-b88a-969af542495f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode31", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f121a796-38b7-4ca0-9ec6-768328b93e21" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -4, + "y" : 0, + "z" : 1395 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f121a796-38b7-4ca0-9ec6-768328b93e21" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f121a796-38b7-4ca0-9ec6-768328b93e21" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f121a796-38b7-4ca0-9ec6-768328b93e21" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode32", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0d740b37-7fb7-4e5d-9807-4c95c5813650" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -11, + "y" : 0, + "z" : 1440 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0d740b37-7fb7-4e5d-9807-4c95c5813650" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0d740b37-7fb7-4e5d-9807-4c95c5813650" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0d740b37-7fb7-4e5d-9807-4c95c5813650" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode33", + "tags" : [ + + ], + "elementGuid" : { + "value" : "88b539bc-f21f-4d44-8b1c-101cb0748fb0" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -20, + "y" : 0, + "z" : 1485 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "88b539bc-f21f-4d44-8b1c-101cb0748fb0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "88b539bc-f21f-4d44-8b1c-101cb0748fb0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "88b539bc-f21f-4d44-8b1c-101cb0748fb0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "98.34-131.01", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7a31e408-a608-4248-ad03-5bed4e9ef099" + }, + "attachedElementGuid" : { + "value" : "f090c03d-7b08-4ec2-94d5-6e4baa1c4af1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7a31e408-a608-4248-ad03-5bed4e9ef099" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7a31e408-a608-4248-ad03-5bed4e9ef099" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 0, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "7a31e408-a608-4248-ad03-5bed4e9ef099" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 98.34, + "trackEndTime" : 131.01, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "7a31e408-a608-4248-ad03-5bed4e9ef099" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f52261c0-80dc-4221-a96a-b827446a1757" + }, + "attachedElementGuid" : { + "value" : "7a31e408-a608-4248-ad03-5bed4e9ef099" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 3742.5 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f52261c0-80dc-4221-a96a-b827446a1757" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f52261c0-80dc-4221-a96a-b827446a1757" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f52261c0-80dc-4221-a96a-b827446a1757" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4cfaff51-0dd6-4924-ba5d-e6519f359b0d" + }, + "attachedElementGuid" : { + "value" : "7a31e408-a608-4248-ad03-5bed4e9ef099" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 5227.5 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4cfaff51-0dd6-4924-ba5d-e6519f359b0d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4cfaff51-0dd6-4924-ba5d-e6519f359b0d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4cfaff51-0dd6-4924-ba5d-e6519f359b0d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "T2", + "tags" : [ + + ], + "elementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + }, + "attachedElementGuid" : { + "value" : "152d1cd8-fcb0-4ff4-9b56-b874aec31117" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 1, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 98.34, + "trackEndTime" : 131.01, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cfbeccdd-3a7a-4d5e-b11d-4f32567b6dc1" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "cfbeccdd-3a7a-4d5e-b11d-4f32567b6dc1" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 98.34 + },{ + "value" : false, + "time" : 131.01 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + { + "startValue" : 32.01, + "endValue" : 5, + "startTime" : 16.17, + "endTime" : 5, + "animationCurveType" : 0 + } + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e1218e16-5f2c-4dd8-a913-b87009ea1fd1" + }, + "attachedElementGuid" : { + "value" : "cfbeccdd-3a7a-4d5e-b11d-4f32567b6dc1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e1218e16-5f2c-4dd8-a913-b87009ea1fd1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e1218e16-5f2c-4dd8-a913-b87009ea1fd1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0.3965093, + "g" : 0.497728825, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "e1218e16-5f2c-4dd8-a913-b87009ea1fd1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode0", + "tags" : [ + + ], + "elementGuid" : { + "value" : "885ee0fb-5c62-4026-890f-b03249307c23" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "885ee0fb-5c62-4026-890f-b03249307c23" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "885ee0fb-5c62-4026-890f-b03249307c23" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "885ee0fb-5c62-4026-890f-b03249307c23" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode1", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5e5874e4-1290-4696-96d5-60a822a353ed" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 45 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5e5874e4-1290-4696-96d5-60a822a353ed" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5e5874e4-1290-4696-96d5-60a822a353ed" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5e5874e4-1290-4696-96d5-60a822a353ed" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode2", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c89003ed-11eb-4f16-a211-be4479b6029f" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 90 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c89003ed-11eb-4f16-a211-be4479b6029f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c89003ed-11eb-4f16-a211-be4479b6029f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c89003ed-11eb-4f16-a211-be4479b6029f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode3", + "tags" : [ + + ], + "elementGuid" : { + "value" : "dc240f58-91b0-4e7f-9804-2114305ea620" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 135 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "dc240f58-91b0-4e7f-9804-2114305ea620" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "dc240f58-91b0-4e7f-9804-2114305ea620" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "dc240f58-91b0-4e7f-9804-2114305ea620" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode4", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a2e2d547-5a47-4ced-b85f-3b34e75bd715" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 180 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a2e2d547-5a47-4ced-b85f-3b34e75bd715" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a2e2d547-5a47-4ced-b85f-3b34e75bd715" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a2e2d547-5a47-4ced-b85f-3b34e75bd715" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode5", + "tags" : [ + + ], + "elementGuid" : { + "value" : "31fa84f2-7094-4ddc-b031-a35e6b10b9b8" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 225 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "31fa84f2-7094-4ddc-b031-a35e6b10b9b8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "31fa84f2-7094-4ddc-b031-a35e6b10b9b8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "31fa84f2-7094-4ddc-b031-a35e6b10b9b8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode6", + "tags" : [ + + ], + "elementGuid" : { + "value" : "531064c5-fdb2-4f6d-b5b7-741b1ae358f5" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 270 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "531064c5-fdb2-4f6d-b5b7-741b1ae358f5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "531064c5-fdb2-4f6d-b5b7-741b1ae358f5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "531064c5-fdb2-4f6d-b5b7-741b1ae358f5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode7", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e40f3ba1-833e-48ab-98db-e1ebd6ebe926" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 315 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e40f3ba1-833e-48ab-98db-e1ebd6ebe926" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e40f3ba1-833e-48ab-98db-e1ebd6ebe926" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e40f3ba1-833e-48ab-98db-e1ebd6ebe926" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode8", + "tags" : [ + + ], + "elementGuid" : { + "value" : "25335382-eede-482e-ae29-76a74a524e3c" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 360 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "25335382-eede-482e-ae29-76a74a524e3c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "25335382-eede-482e-ae29-76a74a524e3c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "25335382-eede-482e-ae29-76a74a524e3c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode9", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1b683b64-2333-453b-b9a3-f6b33633b9e5" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 405 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "1b683b64-2333-453b-b9a3-f6b33633b9e5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1b683b64-2333-453b-b9a3-f6b33633b9e5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "1b683b64-2333-453b-b9a3-f6b33633b9e5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode10", + "tags" : [ + + ], + "elementGuid" : { + "value" : "97d2c384-94d3-4f2e-9c19-929afc740f8f" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 450 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "97d2c384-94d3-4f2e-9c19-929afc740f8f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "97d2c384-94d3-4f2e-9c19-929afc740f8f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "97d2c384-94d3-4f2e-9c19-929afc740f8f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode11", + "tags" : [ + + ], + "elementGuid" : { + "value" : "71c35fbf-7a7b-4d63-8b04-d8da5a1e0dc3" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 495 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "71c35fbf-7a7b-4d63-8b04-d8da5a1e0dc3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "71c35fbf-7a7b-4d63-8b04-d8da5a1e0dc3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "71c35fbf-7a7b-4d63-8b04-d8da5a1e0dc3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode12", + "tags" : [ + + ], + "elementGuid" : { + "value" : "da60f74e-824d-47c8-84a4-c74d294a3b22" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 540 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "da60f74e-824d-47c8-84a4-c74d294a3b22" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "da60f74e-824d-47c8-84a4-c74d294a3b22" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "da60f74e-824d-47c8-84a4-c74d294a3b22" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode13", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c0dc4a93-2d50-4c89-820f-1d8d0f64aa0f" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 585 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c0dc4a93-2d50-4c89-820f-1d8d0f64aa0f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c0dc4a93-2d50-4c89-820f-1d8d0f64aa0f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c0dc4a93-2d50-4c89-820f-1d8d0f64aa0f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode14", + "tags" : [ + + ], + "elementGuid" : { + "value" : "47fa797a-ce77-4dbc-8696-41cb099c16fa" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 630 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "47fa797a-ce77-4dbc-8696-41cb099c16fa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "47fa797a-ce77-4dbc-8696-41cb099c16fa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "47fa797a-ce77-4dbc-8696-41cb099c16fa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode15", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c6b89b91-94a6-4de0-9fa3-59638a236e0f" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 675 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c6b89b91-94a6-4de0-9fa3-59638a236e0f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c6b89b91-94a6-4de0-9fa3-59638a236e0f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c6b89b91-94a6-4de0-9fa3-59638a236e0f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode16", + "tags" : [ + + ], + "elementGuid" : { + "value" : "97f1e023-655b-48f4-96df-34b7dfa15cbf" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -2, + "y" : 0, + "z" : 720 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "97f1e023-655b-48f4-96df-34b7dfa15cbf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "97f1e023-655b-48f4-96df-34b7dfa15cbf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "97f1e023-655b-48f4-96df-34b7dfa15cbf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode17", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f5f89252-0140-421c-a35c-9d3dc896836a" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0.5, + "z" : 765 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f5f89252-0140-421c-a35c-9d3dc896836a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f5f89252-0140-421c-a35c-9d3dc896836a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f5f89252-0140-421c-a35c-9d3dc896836a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode18", + "tags" : [ + + ], + "elementGuid" : { + "value" : "24395bfd-d300-4bf6-a367-408cabe4edba" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 1, + "z" : 810 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "24395bfd-d300-4bf6-a367-408cabe4edba" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "24395bfd-d300-4bf6-a367-408cabe4edba" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "24395bfd-d300-4bf6-a367-408cabe4edba" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode19", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d93a59e7-d708-4182-9e54-16efbc84dc2d" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -1, + "y" : 0, + "z" : 855 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d93a59e7-d708-4182-9e54-16efbc84dc2d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d93a59e7-d708-4182-9e54-16efbc84dc2d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d93a59e7-d708-4182-9e54-16efbc84dc2d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode20", + "tags" : [ + + ], + "elementGuid" : { + "value" : "39674428-7a51-45ba-8b02-ea76625349ed" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 7, + "y" : 3, + "z" : 900 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "39674428-7a51-45ba-8b02-ea76625349ed" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "39674428-7a51-45ba-8b02-ea76625349ed" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "39674428-7a51-45ba-8b02-ea76625349ed" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode21", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7e9a44f5-c713-47b6-b61e-e0b2f229ade3" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2, + "y" : 0, + "z" : 945 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7e9a44f5-c713-47b6-b61e-e0b2f229ade3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7e9a44f5-c713-47b6-b61e-e0b2f229ade3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "7e9a44f5-c713-47b6-b61e-e0b2f229ade3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode22", + "tags" : [ + + ], + "elementGuid" : { + "value" : "33c2f510-4752-44f8-a57d-ee1ae013bc27" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 1, + "z" : 990 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "33c2f510-4752-44f8-a57d-ee1ae013bc27" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "33c2f510-4752-44f8-a57d-ee1ae013bc27" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "33c2f510-4752-44f8-a57d-ee1ae013bc27" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode23", + "tags" : [ + + ], + "elementGuid" : { + "value" : "02a207d4-e326-4bb6-9d71-05010fa2acda" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -1, + "y" : 0, + "z" : 1035 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "02a207d4-e326-4bb6-9d71-05010fa2acda" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "02a207d4-e326-4bb6-9d71-05010fa2acda" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "02a207d4-e326-4bb6-9d71-05010fa2acda" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode24", + "tags" : [ + + ], + "elementGuid" : { + "value" : "11816e3c-2df3-4e99-a53d-8792edabf0ad" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 7, + "y" : 3, + "z" : 1080 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "11816e3c-2df3-4e99-a53d-8792edabf0ad" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "11816e3c-2df3-4e99-a53d-8792edabf0ad" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "11816e3c-2df3-4e99-a53d-8792edabf0ad" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode25", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3f3533cc-e82b-461a-ae30-93afa7ce9df0" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2, + "y" : 0, + "z" : 1125 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3f3533cc-e82b-461a-ae30-93afa7ce9df0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3f3533cc-e82b-461a-ae30-93afa7ce9df0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3f3533cc-e82b-461a-ae30-93afa7ce9df0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode26", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c96cbf24-c412-4003-9a53-66a9248410da" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 1, + "z" : 1170 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c96cbf24-c412-4003-9a53-66a9248410da" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c96cbf24-c412-4003-9a53-66a9248410da" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c96cbf24-c412-4003-9a53-66a9248410da" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode27", + "tags" : [ + + ], + "elementGuid" : { + "value" : "697af95f-a140-47cb-9724-252a74453bed" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -1, + "y" : 0, + "z" : 1215 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "697af95f-a140-47cb-9724-252a74453bed" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "697af95f-a140-47cb-9724-252a74453bed" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "697af95f-a140-47cb-9724-252a74453bed" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode28", + "tags" : [ + + ], + "elementGuid" : { + "value" : "79ded5e0-3de8-466b-aba9-ebedf1a8d878" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 7, + "y" : 3, + "z" : 1260 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "79ded5e0-3de8-466b-aba9-ebedf1a8d878" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "79ded5e0-3de8-466b-aba9-ebedf1a8d878" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "79ded5e0-3de8-466b-aba9-ebedf1a8d878" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode29", + "tags" : [ + + ], + "elementGuid" : { + "value" : "41430e6c-87a4-497e-94a2-46a622e60456" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2, + "y" : 0, + "z" : 1305 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "41430e6c-87a4-497e-94a2-46a622e60456" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "41430e6c-87a4-497e-94a2-46a622e60456" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "41430e6c-87a4-497e-94a2-46a622e60456" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode30", + "tags" : [ + + ], + "elementGuid" : { + "value" : "99e56d9e-01bc-48e4-a53e-de32c82b985f" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 1, + "z" : 1350 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "99e56d9e-01bc-48e4-a53e-de32c82b985f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "99e56d9e-01bc-48e4-a53e-de32c82b985f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "99e56d9e-01bc-48e4-a53e-de32c82b985f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode31", + "tags" : [ + + ], + "elementGuid" : { + "value" : "57aa7569-1094-4ecf-aaca-c0d9586352a7" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 1, + "y" : 0, + "z" : 1395 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "57aa7569-1094-4ecf-aaca-c0d9586352a7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "57aa7569-1094-4ecf-aaca-c0d9586352a7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "57aa7569-1094-4ecf-aaca-c0d9586352a7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode32", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f5622427-cadf-4edb-921f-b1e67995598d" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 1, + "y" : 0, + "z" : 1440 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f5622427-cadf-4edb-921f-b1e67995598d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f5622427-cadf-4edb-921f-b1e67995598d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f5622427-cadf-4edb-921f-b1e67995598d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode33", + "tags" : [ + + ], + "elementGuid" : { + "value" : "34ed5268-0669-4de0-ab40-b15a4bbf7b5d" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 1485 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "34ed5268-0669-4de0-ab40-b15a4bbf7b5d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "34ed5268-0669-4de0-ab40-b15a4bbf7b5d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "34ed5268-0669-4de0-ab40-b15a4bbf7b5d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "T3", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + }, + "attachedElementGuid" : { + "value" : "152d1cd8-fcb0-4ff4-9b56-b874aec31117" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 1, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 98.34, + "trackEndTime" : 131.01, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2283ca24-c04e-4d34-b5cf-bceb4c6cb735" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2283ca24-c04e-4d34-b5cf-bceb4c6cb735" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 98.34 + },{ + "value" : false, + "time" : 131.01 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + { + "startValue" : 32.01, + "endValue" : 5, + "startTime" : 16.17, + "endTime" : 5, + "animationCurveType" : 0 + } + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "888ebeb2-a57c-4eb4-a78b-204ac3b096cd" + }, + "attachedElementGuid" : { + "value" : "2283ca24-c04e-4d34-b5cf-bceb4c6cb735" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "888ebeb2-a57c-4eb4-a78b-204ac3b096cd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "888ebeb2-a57c-4eb4-a78b-204ac3b096cd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0.3965093, + "g" : 0.497728825, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "888ebeb2-a57c-4eb4-a78b-204ac3b096cd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode0", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f419ebd9-3f49-46f5-9a75-8e2f86512a11" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f419ebd9-3f49-46f5-9a75-8e2f86512a11" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f419ebd9-3f49-46f5-9a75-8e2f86512a11" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f419ebd9-3f49-46f5-9a75-8e2f86512a11" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode1", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4bdd2814-53d9-4e18-8e4e-a9c0ede5cf5b" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 45 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4bdd2814-53d9-4e18-8e4e-a9c0ede5cf5b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4bdd2814-53d9-4e18-8e4e-a9c0ede5cf5b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4bdd2814-53d9-4e18-8e4e-a9c0ede5cf5b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode2", + "tags" : [ + + ], + "elementGuid" : { + "value" : "65db0590-700b-4135-95ab-d3008a989659" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 90 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "65db0590-700b-4135-95ab-d3008a989659" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "65db0590-700b-4135-95ab-d3008a989659" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "65db0590-700b-4135-95ab-d3008a989659" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode3", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ede14af3-d0c2-4307-8a4c-9063b452b749" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 135 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ede14af3-d0c2-4307-8a4c-9063b452b749" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ede14af3-d0c2-4307-8a4c-9063b452b749" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ede14af3-d0c2-4307-8a4c-9063b452b749" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode4", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f2cb343c-4f95-4596-88df-d391a4c2dd02" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 180 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f2cb343c-4f95-4596-88df-d391a4c2dd02" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f2cb343c-4f95-4596-88df-d391a4c2dd02" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f2cb343c-4f95-4596-88df-d391a4c2dd02" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode5", + "tags" : [ + + ], + "elementGuid" : { + "value" : "12903a87-73fc-4df3-8b0a-bac57f74624a" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 225 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "12903a87-73fc-4df3-8b0a-bac57f74624a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "12903a87-73fc-4df3-8b0a-bac57f74624a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "12903a87-73fc-4df3-8b0a-bac57f74624a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode6", + "tags" : [ + + ], + "elementGuid" : { + "value" : "05f69e4d-502e-443c-b078-abc90d415e0a" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 270 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "05f69e4d-502e-443c-b078-abc90d415e0a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "05f69e4d-502e-443c-b078-abc90d415e0a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "05f69e4d-502e-443c-b078-abc90d415e0a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode7", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9d8709e3-72fa-468a-9732-a238b170e032" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 315 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9d8709e3-72fa-468a-9732-a238b170e032" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9d8709e3-72fa-468a-9732-a238b170e032" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "9d8709e3-72fa-468a-9732-a238b170e032" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode8", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a8f62b86-6a1f-4e4a-b90a-8690f739af98" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 360 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a8f62b86-6a1f-4e4a-b90a-8690f739af98" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a8f62b86-6a1f-4e4a-b90a-8690f739af98" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a8f62b86-6a1f-4e4a-b90a-8690f739af98" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode9", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3c05ba85-9eaa-4104-aa7e-39ef47edcf92" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 405 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3c05ba85-9eaa-4104-aa7e-39ef47edcf92" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3c05ba85-9eaa-4104-aa7e-39ef47edcf92" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3c05ba85-9eaa-4104-aa7e-39ef47edcf92" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode10", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a7573b28-4cec-4a58-a9d7-6aa069fee6ca" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 450 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a7573b28-4cec-4a58-a9d7-6aa069fee6ca" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a7573b28-4cec-4a58-a9d7-6aa069fee6ca" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a7573b28-4cec-4a58-a9d7-6aa069fee6ca" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode11", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4556d8ef-1d35-4662-b649-26551241ee69" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 495 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4556d8ef-1d35-4662-b649-26551241ee69" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4556d8ef-1d35-4662-b649-26551241ee69" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4556d8ef-1d35-4662-b649-26551241ee69" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode12", + "tags" : [ + + ], + "elementGuid" : { + "value" : "714ba615-2f92-45a9-93f8-9fe85b4d78d7" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 540 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "714ba615-2f92-45a9-93f8-9fe85b4d78d7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "714ba615-2f92-45a9-93f8-9fe85b4d78d7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "714ba615-2f92-45a9-93f8-9fe85b4d78d7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode13", + "tags" : [ + + ], + "elementGuid" : { + "value" : "87f601d9-b108-4a71-bc4a-bc0fa9faa272" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 585 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "87f601d9-b108-4a71-bc4a-bc0fa9faa272" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "87f601d9-b108-4a71-bc4a-bc0fa9faa272" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "87f601d9-b108-4a71-bc4a-bc0fa9faa272" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode14", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2eb844c3-bdf3-4777-9323-6407c3dbe999" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 630 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2eb844c3-bdf3-4777-9323-6407c3dbe999" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2eb844c3-bdf3-4777-9323-6407c3dbe999" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "2eb844c3-bdf3-4777-9323-6407c3dbe999" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode15", + "tags" : [ + + ], + "elementGuid" : { + "value" : "65ee606e-30e5-41eb-ab06-1dfad39ae4dc" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 675 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "65ee606e-30e5-41eb-ab06-1dfad39ae4dc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "65ee606e-30e5-41eb-ab06-1dfad39ae4dc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "65ee606e-30e5-41eb-ab06-1dfad39ae4dc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode16", + "tags" : [ + + ], + "elementGuid" : { + "value" : "900c02ad-a57f-4060-b2d6-71dc42d82a87" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -4, + "y" : 0, + "z" : 720 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "900c02ad-a57f-4060-b2d6-71dc42d82a87" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "900c02ad-a57f-4060-b2d6-71dc42d82a87" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "900c02ad-a57f-4060-b2d6-71dc42d82a87" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode17", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c35f2ea1-ba21-491c-94fc-509ad5868ab6" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -6, + "y" : 2, + "z" : 765 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c35f2ea1-ba21-491c-94fc-509ad5868ab6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c35f2ea1-ba21-491c-94fc-509ad5868ab6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c35f2ea1-ba21-491c-94fc-509ad5868ab6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode18", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bedc908b-31cd-4637-891f-70d3a985d8a6" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -6, + "y" : 3, + "z" : 810 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "bedc908b-31cd-4637-891f-70d3a985d8a6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bedc908b-31cd-4637-891f-70d3a985d8a6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "bedc908b-31cd-4637-891f-70d3a985d8a6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode19", + "tags" : [ + + ], + "elementGuid" : { + "value" : "575bf249-c1c5-4a4e-a1e1-0fdb34b63a72" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -2, + "y" : 0, + "z" : 855 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "575bf249-c1c5-4a4e-a1e1-0fdb34b63a72" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "575bf249-c1c5-4a4e-a1e1-0fdb34b63a72" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "575bf249-c1c5-4a4e-a1e1-0fdb34b63a72" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode20", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d89097f9-35dc-472d-bcd2-a21f514acd11" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 1, + "z" : 900 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d89097f9-35dc-472d-bcd2-a21f514acd11" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d89097f9-35dc-472d-bcd2-a21f514acd11" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d89097f9-35dc-472d-bcd2-a21f514acd11" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode21", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e6f1b7ab-61f7-48dc-8613-d878f8476694" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 1, + "y" : 0, + "z" : 945 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e6f1b7ab-61f7-48dc-8613-d878f8476694" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e6f1b7ab-61f7-48dc-8613-d878f8476694" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e6f1b7ab-61f7-48dc-8613-d878f8476694" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode22", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5a13b057-fbf7-4f55-826e-39c66f86c446" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -7, + "y" : 3, + "z" : 990 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5a13b057-fbf7-4f55-826e-39c66f86c446" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5a13b057-fbf7-4f55-826e-39c66f86c446" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5a13b057-fbf7-4f55-826e-39c66f86c446" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode23", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6ba79942-ace7-4493-8140-42c4d0cb3e2b" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -2, + "y" : 0, + "z" : 1035 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6ba79942-ace7-4493-8140-42c4d0cb3e2b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6ba79942-ace7-4493-8140-42c4d0cb3e2b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6ba79942-ace7-4493-8140-42c4d0cb3e2b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode24", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bfff8b6b-6e08-4e29-9904-572c8b647fd9" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 1, + "z" : 1080 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "bfff8b6b-6e08-4e29-9904-572c8b647fd9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bfff8b6b-6e08-4e29-9904-572c8b647fd9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "bfff8b6b-6e08-4e29-9904-572c8b647fd9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode25", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c0e3f422-4de0-4eae-b897-cf7892d15218" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 1, + "y" : 0, + "z" : 1125 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c0e3f422-4de0-4eae-b897-cf7892d15218" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c0e3f422-4de0-4eae-b897-cf7892d15218" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c0e3f422-4de0-4eae-b897-cf7892d15218" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode26", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0ab8ec6c-9a53-4d6e-84b6-7ec1f81cc744" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -7, + "y" : 3, + "z" : 1170 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0ab8ec6c-9a53-4d6e-84b6-7ec1f81cc744" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0ab8ec6c-9a53-4d6e-84b6-7ec1f81cc744" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0ab8ec6c-9a53-4d6e-84b6-7ec1f81cc744" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode27", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2abc00b2-31d9-4d56-853f-781ed3f02c3e" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -2, + "y" : 0, + "z" : 1215 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2abc00b2-31d9-4d56-853f-781ed3f02c3e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2abc00b2-31d9-4d56-853f-781ed3f02c3e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "2abc00b2-31d9-4d56-853f-781ed3f02c3e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode28", + "tags" : [ + + ], + "elementGuid" : { + "value" : "296979b6-b5b5-4e1b-a7f5-206f66b8a6bb" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 1, + "z" : 1260 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "296979b6-b5b5-4e1b-a7f5-206f66b8a6bb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "296979b6-b5b5-4e1b-a7f5-206f66b8a6bb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "296979b6-b5b5-4e1b-a7f5-206f66b8a6bb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode29", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e0376fb6-e3d1-457d-9701-298c9f36e4f7" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 1, + "y" : 0, + "z" : 1305 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e0376fb6-e3d1-457d-9701-298c9f36e4f7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e0376fb6-e3d1-457d-9701-298c9f36e4f7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e0376fb6-e3d1-457d-9701-298c9f36e4f7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode30", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6ed3c82f-3d07-44db-8fcf-5a3fde5fa77b" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -7, + "y" : 3, + "z" : 1350 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6ed3c82f-3d07-44db-8fcf-5a3fde5fa77b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6ed3c82f-3d07-44db-8fcf-5a3fde5fa77b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6ed3c82f-3d07-44db-8fcf-5a3fde5fa77b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode31", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a0d922cc-2b4d-4973-be1b-18f55fc5234c" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -1, + "y" : 0, + "z" : 1395 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a0d922cc-2b4d-4973-be1b-18f55fc5234c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a0d922cc-2b4d-4973-be1b-18f55fc5234c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a0d922cc-2b4d-4973-be1b-18f55fc5234c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode32", + "tags" : [ + + ], + "elementGuid" : { + "value" : "60792df7-9612-4bba-b84c-9145e7eef0d8" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -1, + "y" : 0, + "z" : 1440 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "60792df7-9612-4bba-b84c-9145e7eef0d8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "60792df7-9612-4bba-b84c-9145e7eef0d8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "60792df7-9612-4bba-b84c-9145e7eef0d8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode33", + "tags" : [ + + ], + "elementGuid" : { + "value" : "47931ac6-7504-434f-8d62-1010ae6ddd99" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 1485 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "47931ac6-7504-434f-8d62-1010ae6ddd99" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "47931ac6-7504-434f-8d62-1010ae6ddd99" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "47931ac6-7504-434f-8d62-1010ae6ddd99" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "T4", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + }, + "attachedElementGuid" : { + "value" : "152d1cd8-fcb0-4ff4-9b56-b874aec31117" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 1, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 98.34, + "trackEndTime" : 131.01, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "13ded1aa-4272-483a-89b3-1ff2c5eafad1" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "13ded1aa-4272-483a-89b3-1ff2c5eafad1" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 98.34 + },{ + "value" : false, + "time" : 131.01 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + { + "startValue" : 32.01, + "endValue" : 5, + "startTime" : 16.17, + "endTime" : 5, + "animationCurveType" : 0 + } + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8d107b49-8ea2-489d-a20a-14d3d02671f3" + }, + "attachedElementGuid" : { + "value" : "13ded1aa-4272-483a-89b3-1ff2c5eafad1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8d107b49-8ea2-489d-a20a-14d3d02671f3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8d107b49-8ea2-489d-a20a-14d3d02671f3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0.3965093, + "g" : 0.497728825, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "8d107b49-8ea2-489d-a20a-14d3d02671f3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode0", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8f40b3ff-979e-4524-93ce-4fa5325b0b51" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8f40b3ff-979e-4524-93ce-4fa5325b0b51" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8f40b3ff-979e-4524-93ce-4fa5325b0b51" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8f40b3ff-979e-4524-93ce-4fa5325b0b51" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode1", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d7e437bc-077d-460e-9cf0-9ee08fb164ba" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 4, + "z" : 45 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d7e437bc-077d-460e-9cf0-9ee08fb164ba" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d7e437bc-077d-460e-9cf0-9ee08fb164ba" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d7e437bc-077d-460e-9cf0-9ee08fb164ba" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode2", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bcca3817-14b2-45da-81e7-a8fc5a6b67a2" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 2, + "z" : 90 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "bcca3817-14b2-45da-81e7-a8fc5a6b67a2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bcca3817-14b2-45da-81e7-a8fc5a6b67a2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "bcca3817-14b2-45da-81e7-a8fc5a6b67a2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode3", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fe8302b5-15b2-4203-bbee-edf38486436c" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 3, + "y" : 0, + "z" : 135 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "fe8302b5-15b2-4203-bbee-edf38486436c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fe8302b5-15b2-4203-bbee-edf38486436c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "fe8302b5-15b2-4203-bbee-edf38486436c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode4", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e91fbb2a-cc68-4797-911c-e713443db5bb" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 2, + "z" : 180 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e91fbb2a-cc68-4797-911c-e713443db5bb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e91fbb2a-cc68-4797-911c-e713443db5bb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e91fbb2a-cc68-4797-911c-e713443db5bb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode5", + "tags" : [ + + ], + "elementGuid" : { + "value" : "92877ef7-d88a-4acb-b5f8-4a70ae666edb" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 4, + "z" : 225 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "92877ef7-d88a-4acb-b5f8-4a70ae666edb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "92877ef7-d88a-4acb-b5f8-4a70ae666edb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "92877ef7-d88a-4acb-b5f8-4a70ae666edb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode6", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0a628234-2bf1-49d8-bb05-6a4c997fe3f7" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 2, + "z" : 270 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0a628234-2bf1-49d8-bb05-6a4c997fe3f7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0a628234-2bf1-49d8-bb05-6a4c997fe3f7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0a628234-2bf1-49d8-bb05-6a4c997fe3f7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode7", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c5f47e00-089f-4228-9f45-1704320ababf" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 3, + "y" : 0, + "z" : 315 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c5f47e00-089f-4228-9f45-1704320ababf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c5f47e00-089f-4228-9f45-1704320ababf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c5f47e00-089f-4228-9f45-1704320ababf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode8", + "tags" : [ + + ], + "elementGuid" : { + "value" : "76ec2ab4-5e37-413f-8cd8-87f773d5e38a" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 2, + "z" : 360 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "76ec2ab4-5e37-413f-8cd8-87f773d5e38a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "76ec2ab4-5e37-413f-8cd8-87f773d5e38a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "76ec2ab4-5e37-413f-8cd8-87f773d5e38a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode9", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e2b5d0aa-db80-490f-ae22-eeddf5d367b2" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 4, + "z" : 405 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e2b5d0aa-db80-490f-ae22-eeddf5d367b2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e2b5d0aa-db80-490f-ae22-eeddf5d367b2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e2b5d0aa-db80-490f-ae22-eeddf5d367b2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode10", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3829de00-308e-4d24-b43e-846a7c70f0c1" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 2, + "z" : 450 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3829de00-308e-4d24-b43e-846a7c70f0c1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3829de00-308e-4d24-b43e-846a7c70f0c1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3829de00-308e-4d24-b43e-846a7c70f0c1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode11", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f1c956ad-16df-41ba-9c1b-4832857a8286" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 3, + "y" : 0, + "z" : 495 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f1c956ad-16df-41ba-9c1b-4832857a8286" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f1c956ad-16df-41ba-9c1b-4832857a8286" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f1c956ad-16df-41ba-9c1b-4832857a8286" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode12", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e15e4528-d1c7-4489-99ad-1a15b7c04e57" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 2, + "z" : 540 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e15e4528-d1c7-4489-99ad-1a15b7c04e57" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e15e4528-d1c7-4489-99ad-1a15b7c04e57" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e15e4528-d1c7-4489-99ad-1a15b7c04e57" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode13", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d632bd4c-d4e1-4ce7-9675-6c22ed1a1567" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 4, + "z" : 585 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d632bd4c-d4e1-4ce7-9675-6c22ed1a1567" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d632bd4c-d4e1-4ce7-9675-6c22ed1a1567" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d632bd4c-d4e1-4ce7-9675-6c22ed1a1567" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode14", + "tags" : [ + + ], + "elementGuid" : { + "value" : "35b4433a-f85c-4418-8e3d-3cd2044fab7d" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 2, + "z" : 630 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "35b4433a-f85c-4418-8e3d-3cd2044fab7d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "35b4433a-f85c-4418-8e3d-3cd2044fab7d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "35b4433a-f85c-4418-8e3d-3cd2044fab7d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode15", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f10c7272-408c-4714-a7c8-22728cc16566" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 3, + "y" : 0, + "z" : 675 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f10c7272-408c-4714-a7c8-22728cc16566" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f10c7272-408c-4714-a7c8-22728cc16566" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f10c7272-408c-4714-a7c8-22728cc16566" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode16", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1729d956-a00f-4e24-81f5-d6e67ca4fece" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 720 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "1729d956-a00f-4e24-81f5-d6e67ca4fece" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1729d956-a00f-4e24-81f5-d6e67ca4fece" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "1729d956-a00f-4e24-81f5-d6e67ca4fece" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode17", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a2a0bd62-3746-4ec2-9f4e-36d66d4b171c" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -4, + "y" : 0, + "z" : 765 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a2a0bd62-3746-4ec2-9f4e-36d66d4b171c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a2a0bd62-3746-4ec2-9f4e-36d66d4b171c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a2a0bd62-3746-4ec2-9f4e-36d66d4b171c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode18", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5fe03c99-6333-445d-be73-20fc554d893b" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -4, + "y" : 0, + "z" : 810 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5fe03c99-6333-445d-be73-20fc554d893b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5fe03c99-6333-445d-be73-20fc554d893b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5fe03c99-6333-445d-be73-20fc554d893b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode19", + "tags" : [ + + ], + "elementGuid" : { + "value" : "afd30a08-0fc0-4855-a301-b03942b95d6a" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2, + "y" : 2, + "z" : 855 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "afd30a08-0fc0-4855-a301-b03942b95d6a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "afd30a08-0fc0-4855-a301-b03942b95d6a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "afd30a08-0fc0-4855-a301-b03942b95d6a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode20", + "tags" : [ + + ], + "elementGuid" : { + "value" : "eb65ee96-7032-4254-8e1b-c3e500fd5ab0" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 6, + "y" : 4, + "z" : 900 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "eb65ee96-7032-4254-8e1b-c3e500fd5ab0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "eb65ee96-7032-4254-8e1b-c3e500fd5ab0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "eb65ee96-7032-4254-8e1b-c3e500fd5ab0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode21", + "tags" : [ + + ], + "elementGuid" : { + "value" : "aff81050-fc3c-4a07-ae10-997208413afc" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 945 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "aff81050-fc3c-4a07-ae10-997208413afc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "aff81050-fc3c-4a07-ae10-997208413afc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "aff81050-fc3c-4a07-ae10-997208413afc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode22", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d779fb3d-342b-4b41-87cf-b6bb377954f6" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -4, + "y" : 0, + "z" : 990 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d779fb3d-342b-4b41-87cf-b6bb377954f6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d779fb3d-342b-4b41-87cf-b6bb377954f6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d779fb3d-342b-4b41-87cf-b6bb377954f6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode23", + "tags" : [ + + ], + "elementGuid" : { + "value" : "798515e7-f97d-49c9-9fab-781d12e6b28e" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2, + "y" : 2, + "z" : 1035 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "798515e7-f97d-49c9-9fab-781d12e6b28e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "798515e7-f97d-49c9-9fab-781d12e6b28e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "798515e7-f97d-49c9-9fab-781d12e6b28e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode24", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ff98a081-38e9-4875-9f79-37cc308905d0" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 6, + "y" : 4, + "z" : 1080 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ff98a081-38e9-4875-9f79-37cc308905d0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ff98a081-38e9-4875-9f79-37cc308905d0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ff98a081-38e9-4875-9f79-37cc308905d0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode25", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5f8ac4e7-acba-4b4e-ab65-a763281740d0" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 1125 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5f8ac4e7-acba-4b4e-ab65-a763281740d0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5f8ac4e7-acba-4b4e-ab65-a763281740d0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5f8ac4e7-acba-4b4e-ab65-a763281740d0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode26", + "tags" : [ + + ], + "elementGuid" : { + "value" : "18d10263-59a7-49dc-82c3-69700362ddd2" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -4, + "y" : 0, + "z" : 1170 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "18d10263-59a7-49dc-82c3-69700362ddd2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "18d10263-59a7-49dc-82c3-69700362ddd2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "18d10263-59a7-49dc-82c3-69700362ddd2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode27", + "tags" : [ + + ], + "elementGuid" : { + "value" : "327973da-f955-44ec-b202-686fe9e90623" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2, + "y" : 2, + "z" : 1215 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "327973da-f955-44ec-b202-686fe9e90623" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "327973da-f955-44ec-b202-686fe9e90623" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "327973da-f955-44ec-b202-686fe9e90623" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode28", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d44479e0-a766-4ac0-9a5c-c6d0b2d2a8ac" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 6, + "y" : 4, + "z" : 1260 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d44479e0-a766-4ac0-9a5c-c6d0b2d2a8ac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d44479e0-a766-4ac0-9a5c-c6d0b2d2a8ac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d44479e0-a766-4ac0-9a5c-c6d0b2d2a8ac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode29", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c414b341-3908-48ed-8719-edbebefeff90" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 1305 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c414b341-3908-48ed-8719-edbebefeff90" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c414b341-3908-48ed-8719-edbebefeff90" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c414b341-3908-48ed-8719-edbebefeff90" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode30", + "tags" : [ + + ], + "elementGuid" : { + "value" : "91a08040-f3b0-4f5f-aa13-48d184cde9d6" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -4, + "y" : 0, + "z" : 1350 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "91a08040-f3b0-4f5f-aa13-48d184cde9d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "91a08040-f3b0-4f5f-aa13-48d184cde9d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "91a08040-f3b0-4f5f-aa13-48d184cde9d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode31", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7b7b0f56-217e-4431-bb0d-da87f941d29f" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2, + "y" : 0, + "z" : 1395 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7b7b0f56-217e-4431-bb0d-da87f941d29f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7b7b0f56-217e-4431-bb0d-da87f941d29f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "7b7b0f56-217e-4431-bb0d-da87f941d29f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode32", + "tags" : [ + + ], + "elementGuid" : { + "value" : "75346a3b-020d-4367-a0d6-38c23368de3c" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 10, + "y" : 0, + "z" : 1440 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "75346a3b-020d-4367-a0d6-38c23368de3c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "75346a3b-020d-4367-a0d6-38c23368de3c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "75346a3b-020d-4367-a0d6-38c23368de3c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode33", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f7927ada-3e9f-4aca-9f0b-5a552945f2f7" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 20, + "y" : 0, + "z" : 1485 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f7927ada-3e9f-4aca-9f0b-5a552945f2f7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f7927ada-3e9f-4aca-9f0b-5a552945f2f7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f7927ada-3e9f-4aca-9f0b-5a552945f2f7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Swirl_BM,Assembly-CSharp", + "eulerAngleX" : { + "animatedFloatList" : [ + { + "startValue" : 20, + "endValue" : 20, + "startTime" : 32.01, + "endTime" : 98.34, + "animationCurveType" : 0 + } + ] + }, + "eulerAngleY" : { + "animatedFloatList" : [ + + ] + }, + "eulerAngleZ" : { + "animatedFloatList" : [ + + ] + }, + "elementName" : "32.01-98.34", + "tags" : [ + + ], + "elementGuid" : { + "value" : "417eb58a-d925-451a-a26f-c679bad88c2e" + }, + "attachedElementGuid" : { + "value" : "a1460a52-d895-47c9-a554-61e29a4a59d5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "417eb58a-d925-451a-a26f-c679bad88c2e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Swirl_BM,Assembly-CSharp", + "eulerAngleX" : { + "animatedFloatList" : [ + { + "startValue" : 20, + "endValue" : 20, + "startTime" : 98.34, + "endTime" : 131.01, + "animationCurveType" : 0 + } + ] + }, + "eulerAngleY" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 0, + "startTime" : 98.34, + "endTime" : 113.190117, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : -5, + "startTime" : 113.190117, + "endTime" : 115.1701, + "animationCurveType" : 3 + },{ + "startValue" : -5, + "endValue" : 5, + "startTime" : 115.1701, + "endTime" : 118.1401, + "animationCurveType" : 3 + },{ + "startValue" : 5, + "endValue" : -5, + "startTime" : 118.140121, + "endTime" : 120.120125, + "animationCurveType" : 3 + },{ + "startValue" : -5, + "endValue" : 5, + "startTime" : 120.120125, + "endTime" : 122.100128, + "animationCurveType" : 3 + },{ + "startValue" : 5, + "endValue" : -5, + "startTime" : 122.100128, + "endTime" : 124.080132, + "animationCurveType" : 3 + },{ + "startValue" : -5, + "endValue" : 5, + "startTime" : 124.080132, + "endTime" : 126.060135, + "animationCurveType" : 3 + },{ + "startValue" : 5, + "endValue" : -5, + "startTime" : 126.060127, + "endTime" : 128.040131, + "animationCurveType" : 3 + },{ + "startValue" : -5, + "endValue" : 0, + "startTime" : 128.040131, + "endTime" : 130.020142, + "animationCurveType" : 3 + },{ + "startValue" : 0, + "endValue" : 0, + "startTime" : 130.0201, + "endTime" : 131.010132, + "animationCurveType" : 3 + } + ] + }, + "eulerAngleZ" : { + "animatedFloatList" : [ + { + "startValue" : 0, + "endValue" : 0, + "startTime" : 98.34, + "endTime" : 99.33, + "animationCurveType" : 0 + },{ + "startValue" : 0, + "endValue" : -5, + "startTime" : 99.33, + "endTime" : 100.32, + "animationCurveType" : 3 + },{ + "startValue" : -5, + "endValue" : 5, + "startTime" : 100.32, + "endTime" : 102.3, + "animationCurveType" : 3 + },{ + "startValue" : 5, + "endValue" : -5, + "startTime" : 102.3001, + "endTime" : 104.280106, + "animationCurveType" : 3 + },{ + "startValue" : -5, + "endValue" : 5, + "startTime" : 104.280106, + "endTime" : 106.260109, + "animationCurveType" : 3 + },{ + "startValue" : 5, + "endValue" : -5, + "startTime" : 106.260208, + "endTime" : 108.240211, + "animationCurveType" : 3 + },{ + "startValue" : -5, + "endValue" : 5, + "startTime" : 108.240112, + "endTime" : 110.220116, + "animationCurveType" : 3 + },{ + "startValue" : 5, + "endValue" : -5, + "startTime" : 110.220215, + "endTime" : 112.200218, + "animationCurveType" : 3 + },{ + "startValue" : -5, + "endValue" : 5, + "startTime" : 112.200119, + "endTime" : 114.180122, + "animationCurveType" : 3 + },{ + "startValue" : 5, + "endValue" : 0, + "startTime" : 114.1801, + "endTime" : 115.1701, + "animationCurveType" : 3 + } + ] + }, + "elementName" : "98.34-131.01", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d62ca9a4-f5aa-4cdb-9877-5444fa791629" + }, + "attachedElementGuid" : { + "value" : "a1460a52-d895-47c9-a554-61e29a4a59d5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d62ca9a4-f5aa-4cdb-9877-5444fa791629" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp", + "elementName" : "Note_guide", + "tags" : [ + + ], + "elementGuid" : { + "value" : "53406812-55c6-47e2-9aac-198a37e7aaf2" + }, + "attachedElementGuid" : { + "value" : "be72a124-1762-48a8-af81-2531cd202e9d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "53406812-55c6-47e2-9aac-198a37e7aaf2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "53406812-55c6-47e2-9aac-198a37e7aaf2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "T1", + "tags" : [ + + ], + "elementGuid" : { + "value" : "eef5da69-f2fe-4c33-93d4-93bd4c18612b" + }, + "attachedElementGuid" : { + "value" : "53406812-55c6-47e2-9aac-198a37e7aaf2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "eef5da69-f2fe-4c33-93d4-93bd4c18612b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "eef5da69-f2fe-4c33-93d4-93bd4c18612b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 1, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "eef5da69-f2fe-4c33-93d4-93bd4c18612b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 96.84, + "trackEndTime" : 128.51, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "eef5da69-f2fe-4c33-93d4-93bd4c18612b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b70ad29b-ad0f-4f8e-b06d-56574c709192" + }, + "attachedElementGuid" : { + "value" : "eef5da69-f2fe-4c33-93d4-93bd4c18612b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b70ad29b-ad0f-4f8e-b06d-56574c709192" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : false, + "time" : 98.34 + },{ + "value" : false, + "time" : 131.01 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + { + "startValue" : 32.01, + "endValue" : 5, + "startTime" : 16.17, + "endTime" : 5, + "animationCurveType" : 0 + } + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c30f5f10-046b-43cd-aaa3-957dec706001" + }, + "attachedElementGuid" : { + "value" : "b70ad29b-ad0f-4f8e-b06d-56574c709192" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c30f5f10-046b-43cd-aaa3-957dec706001" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c30f5f10-046b-43cd-aaa3-957dec706001" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0.5, + "g" : 0.8, + "b" : 1, + "a" : 0.5 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "c30f5f10-046b-43cd-aaa3-957dec706001" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode0", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d3979733-3489-4cdb-ad09-d0ccde4a7c64" + }, + "attachedElementGuid" : { + "value" : "eef5da69-f2fe-4c33-93d4-93bd4c18612b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d3979733-3489-4cdb-ad09-d0ccde4a7c64" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d3979733-3489-4cdb-ad09-d0ccde4a7c64" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d3979733-3489-4cdb-ad09-d0ccde4a7c64" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode1", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d1e300a2-1cd9-4d3a-8305-32a68f0c0c7c" + }, + "attachedElementGuid" : { + "value" : "eef5da69-f2fe-4c33-93d4-93bd4c18612b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 4, + "z" : 45 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d1e300a2-1cd9-4d3a-8305-32a68f0c0c7c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d1e300a2-1cd9-4d3a-8305-32a68f0c0c7c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d1e300a2-1cd9-4d3a-8305-32a68f0c0c7c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode2", + "tags" : [ + + ], + "elementGuid" : { + "value" : "edb3b7b7-fb98-4c44-b6d9-87cd3c01f8fb" + }, + "attachedElementGuid" : { + "value" : "eef5da69-f2fe-4c33-93d4-93bd4c18612b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 2, + "z" : 90 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "edb3b7b7-fb98-4c44-b6d9-87cd3c01f8fb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "edb3b7b7-fb98-4c44-b6d9-87cd3c01f8fb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "edb3b7b7-fb98-4c44-b6d9-87cd3c01f8fb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode3", + "tags" : [ + + ], + "elementGuid" : { + "value" : "437a3853-e2f7-4985-b680-665535e1b914" + }, + "attachedElementGuid" : { + "value" : "eef5da69-f2fe-4c33-93d4-93bd4c18612b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -3, + "y" : 0, + "z" : 135 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "437a3853-e2f7-4985-b680-665535e1b914" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "437a3853-e2f7-4985-b680-665535e1b914" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "437a3853-e2f7-4985-b680-665535e1b914" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode4", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bce7d1a5-de12-436d-921f-dd5a8a54a931" + }, + "attachedElementGuid" : { + "value" : "eef5da69-f2fe-4c33-93d4-93bd4c18612b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 2, + "z" : 180 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "bce7d1a5-de12-436d-921f-dd5a8a54a931" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bce7d1a5-de12-436d-921f-dd5a8a54a931" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "bce7d1a5-de12-436d-921f-dd5a8a54a931" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode5", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0cd0a81e-ed3d-47c3-b401-c27790fa4a7c" + }, + "attachedElementGuid" : { + "value" : "eef5da69-f2fe-4c33-93d4-93bd4c18612b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 4, + "z" : 225 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0cd0a81e-ed3d-47c3-b401-c27790fa4a7c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0cd0a81e-ed3d-47c3-b401-c27790fa4a7c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0cd0a81e-ed3d-47c3-b401-c27790fa4a7c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode6", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8b5e8646-1c4b-40f6-aec0-6a584969992d" + }, + "attachedElementGuid" : { + "value" : "eef5da69-f2fe-4c33-93d4-93bd4c18612b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 2, + "z" : 270 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8b5e8646-1c4b-40f6-aec0-6a584969992d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8b5e8646-1c4b-40f6-aec0-6a584969992d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8b5e8646-1c4b-40f6-aec0-6a584969992d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode7", + "tags" : [ + + ], + "elementGuid" : { + "value" : "57d6103c-cea2-448f-abdf-71512c490421" + }, + "attachedElementGuid" : { + "value" : "eef5da69-f2fe-4c33-93d4-93bd4c18612b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -3, + "y" : 0, + "z" : 315 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "57d6103c-cea2-448f-abdf-71512c490421" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "57d6103c-cea2-448f-abdf-71512c490421" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "57d6103c-cea2-448f-abdf-71512c490421" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode8", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d26eeae9-3d36-4c90-8452-1859256c400d" + }, + "attachedElementGuid" : { + "value" : "eef5da69-f2fe-4c33-93d4-93bd4c18612b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 2, + "z" : 360 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d26eeae9-3d36-4c90-8452-1859256c400d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d26eeae9-3d36-4c90-8452-1859256c400d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d26eeae9-3d36-4c90-8452-1859256c400d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode9", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6429fe9c-ba2a-4d52-a887-9f5b62764529" + }, + "attachedElementGuid" : { + "value" : "eef5da69-f2fe-4c33-93d4-93bd4c18612b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 4, + "z" : 405 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6429fe9c-ba2a-4d52-a887-9f5b62764529" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6429fe9c-ba2a-4d52-a887-9f5b62764529" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6429fe9c-ba2a-4d52-a887-9f5b62764529" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode10", + "tags" : [ + + ], + "elementGuid" : { + "value" : "950da979-c423-45bf-af99-7476ad78e5b0" + }, + "attachedElementGuid" : { + "value" : "eef5da69-f2fe-4c33-93d4-93bd4c18612b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 2, + "z" : 450 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "950da979-c423-45bf-af99-7476ad78e5b0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "950da979-c423-45bf-af99-7476ad78e5b0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "950da979-c423-45bf-af99-7476ad78e5b0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode11", + "tags" : [ + + ], + "elementGuid" : { + "value" : "54e9a5b4-4fb7-47ef-aba5-11688e88eba4" + }, + "attachedElementGuid" : { + "value" : "eef5da69-f2fe-4c33-93d4-93bd4c18612b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -3, + "y" : 0, + "z" : 495 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "54e9a5b4-4fb7-47ef-aba5-11688e88eba4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "54e9a5b4-4fb7-47ef-aba5-11688e88eba4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "54e9a5b4-4fb7-47ef-aba5-11688e88eba4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode12", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ca012191-afef-47c4-9599-302356c8370c" + }, + "attachedElementGuid" : { + "value" : "eef5da69-f2fe-4c33-93d4-93bd4c18612b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 2, + "z" : 540 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ca012191-afef-47c4-9599-302356c8370c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ca012191-afef-47c4-9599-302356c8370c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ca012191-afef-47c4-9599-302356c8370c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode13", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d29e823d-4406-45b3-9ea5-41c4490a06ec" + }, + "attachedElementGuid" : { + "value" : "eef5da69-f2fe-4c33-93d4-93bd4c18612b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 4, + "z" : 585 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d29e823d-4406-45b3-9ea5-41c4490a06ec" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d29e823d-4406-45b3-9ea5-41c4490a06ec" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d29e823d-4406-45b3-9ea5-41c4490a06ec" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode14", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8e74e49b-fa14-446c-9f18-688fe964674b" + }, + "attachedElementGuid" : { + "value" : "eef5da69-f2fe-4c33-93d4-93bd4c18612b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 2, + "z" : 630 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8e74e49b-fa14-446c-9f18-688fe964674b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8e74e49b-fa14-446c-9f18-688fe964674b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8e74e49b-fa14-446c-9f18-688fe964674b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode15", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2bb8141c-7301-492c-b7b1-34c6afd8f036" + }, + "attachedElementGuid" : { + "value" : "eef5da69-f2fe-4c33-93d4-93bd4c18612b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -3, + "y" : 0, + "z" : 675 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2bb8141c-7301-492c-b7b1-34c6afd8f036" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2bb8141c-7301-492c-b7b1-34c6afd8f036" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "2bb8141c-7301-492c-b7b1-34c6afd8f036" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode16", + "tags" : [ + + ], + "elementGuid" : { + "value" : "19dccb5d-8cb8-4c59-998f-d1c1905932b0" + }, + "attachedElementGuid" : { + "value" : "eef5da69-f2fe-4c33-93d4-93bd4c18612b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 2, + "z" : 720 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "19dccb5d-8cb8-4c59-998f-d1c1905932b0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "19dccb5d-8cb8-4c59-998f-d1c1905932b0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "19dccb5d-8cb8-4c59-998f-d1c1905932b0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode17", + "tags" : [ + + ], + "elementGuid" : { + "value" : "84af4196-4339-4cbd-8cf2-968958df1baf" + }, + "attachedElementGuid" : { + "value" : "eef5da69-f2fe-4c33-93d4-93bd4c18612b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -6, + "y" : 4, + "z" : 765 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "84af4196-4339-4cbd-8cf2-968958df1baf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "84af4196-4339-4cbd-8cf2-968958df1baf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "84af4196-4339-4cbd-8cf2-968958df1baf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode18", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a7e36c88-b4c5-43e0-8838-594b9cf133e8" + }, + "attachedElementGuid" : { + "value" : "eef5da69-f2fe-4c33-93d4-93bd4c18612b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -6, + "y" : 4, + "z" : 810 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a7e36c88-b4c5-43e0-8838-594b9cf133e8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a7e36c88-b4c5-43e0-8838-594b9cf133e8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a7e36c88-b4c5-43e0-8838-594b9cf133e8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode19", + "tags" : [ + + ], + "elementGuid" : { + "value" : "df0fae33-3413-4f06-ba26-f4dbf5ac1a2f" + }, + "attachedElementGuid" : { + "value" : "eef5da69-f2fe-4c33-93d4-93bd4c18612b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 855 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "df0fae33-3413-4f06-ba26-f4dbf5ac1a2f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "df0fae33-3413-4f06-ba26-f4dbf5ac1a2f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "df0fae33-3413-4f06-ba26-f4dbf5ac1a2f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode20", + "tags" : [ + + ], + "elementGuid" : { + "value" : "83b1ae79-5314-45f3-8539-c8c9833b1e0e" + }, + "attachedElementGuid" : { + "value" : "eef5da69-f2fe-4c33-93d4-93bd4c18612b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 4, + "y" : 0, + "z" : 900 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "83b1ae79-5314-45f3-8539-c8c9833b1e0e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "83b1ae79-5314-45f3-8539-c8c9833b1e0e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "83b1ae79-5314-45f3-8539-c8c9833b1e0e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode21", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5d434682-f8df-4f0c-b9aa-ec23369646a0" + }, + "attachedElementGuid" : { + "value" : "eef5da69-f2fe-4c33-93d4-93bd4c18612b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -2, + "y" : 2, + "z" : 945 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5d434682-f8df-4f0c-b9aa-ec23369646a0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5d434682-f8df-4f0c-b9aa-ec23369646a0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5d434682-f8df-4f0c-b9aa-ec23369646a0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode22", + "tags" : [ + + ], + "elementGuid" : { + "value" : "17132dc1-1666-4a4f-a370-d59f6cd4ff7f" + }, + "attachedElementGuid" : { + "value" : "eef5da69-f2fe-4c33-93d4-93bd4c18612b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -6, + "y" : 4, + "z" : 990 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "17132dc1-1666-4a4f-a370-d59f6cd4ff7f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "17132dc1-1666-4a4f-a370-d59f6cd4ff7f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "17132dc1-1666-4a4f-a370-d59f6cd4ff7f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode23", + "tags" : [ + + ], + "elementGuid" : { + "value" : "71058fea-cbdd-468f-b7cf-741df151999f" + }, + "attachedElementGuid" : { + "value" : "eef5da69-f2fe-4c33-93d4-93bd4c18612b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 1035 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "71058fea-cbdd-468f-b7cf-741df151999f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "71058fea-cbdd-468f-b7cf-741df151999f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "71058fea-cbdd-468f-b7cf-741df151999f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode24", + "tags" : [ + + ], + "elementGuid" : { + "value" : "45fd581c-1dc5-40c7-879a-fd518d0aa835" + }, + "attachedElementGuid" : { + "value" : "eef5da69-f2fe-4c33-93d4-93bd4c18612b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 4, + "y" : 0, + "z" : 1080 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "45fd581c-1dc5-40c7-879a-fd518d0aa835" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "45fd581c-1dc5-40c7-879a-fd518d0aa835" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "45fd581c-1dc5-40c7-879a-fd518d0aa835" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode25", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cbf5f088-8087-4951-870f-9ed3f5719016" + }, + "attachedElementGuid" : { + "value" : "eef5da69-f2fe-4c33-93d4-93bd4c18612b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -2, + "y" : 2, + "z" : 1125 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "cbf5f088-8087-4951-870f-9ed3f5719016" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "cbf5f088-8087-4951-870f-9ed3f5719016" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "cbf5f088-8087-4951-870f-9ed3f5719016" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode26", + "tags" : [ + + ], + "elementGuid" : { + "value" : "199398df-3a80-4440-a09c-5dff431bf97d" + }, + "attachedElementGuid" : { + "value" : "eef5da69-f2fe-4c33-93d4-93bd4c18612b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -6, + "y" : 4, + "z" : 1170 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "199398df-3a80-4440-a09c-5dff431bf97d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "199398df-3a80-4440-a09c-5dff431bf97d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "199398df-3a80-4440-a09c-5dff431bf97d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode27", + "tags" : [ + + ], + "elementGuid" : { + "value" : "40ff75df-136c-44e8-9e5f-e4170cb24c2a" + }, + "attachedElementGuid" : { + "value" : "eef5da69-f2fe-4c33-93d4-93bd4c18612b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 1215 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "40ff75df-136c-44e8-9e5f-e4170cb24c2a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "40ff75df-136c-44e8-9e5f-e4170cb24c2a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "40ff75df-136c-44e8-9e5f-e4170cb24c2a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode28", + "tags" : [ + + ], + "elementGuid" : { + "value" : "76e21acc-c6fb-40f2-b54e-a71efb60dab2" + }, + "attachedElementGuid" : { + "value" : "eef5da69-f2fe-4c33-93d4-93bd4c18612b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 4, + "y" : 0, + "z" : 1260 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "76e21acc-c6fb-40f2-b54e-a71efb60dab2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "76e21acc-c6fb-40f2-b54e-a71efb60dab2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "76e21acc-c6fb-40f2-b54e-a71efb60dab2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode29", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3c126f07-cb17-4406-ab7d-476194c3c5d6" + }, + "attachedElementGuid" : { + "value" : "eef5da69-f2fe-4c33-93d4-93bd4c18612b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -2, + "y" : 2, + "z" : 1305 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3c126f07-cb17-4406-ab7d-476194c3c5d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3c126f07-cb17-4406-ab7d-476194c3c5d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3c126f07-cb17-4406-ab7d-476194c3c5d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode30", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3759993e-718a-4e71-bad3-1e43c13f6c04" + }, + "attachedElementGuid" : { + "value" : "eef5da69-f2fe-4c33-93d4-93bd4c18612b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -6, + "y" : 4, + "z" : 1350 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3759993e-718a-4e71-bad3-1e43c13f6c04" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3759993e-718a-4e71-bad3-1e43c13f6c04" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3759993e-718a-4e71-bad3-1e43c13f6c04" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode31", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6df75eb0-804e-4b86-aa60-75689d7c7319" + }, + "attachedElementGuid" : { + "value" : "eef5da69-f2fe-4c33-93d4-93bd4c18612b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -4, + "y" : 0, + "z" : 1395 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6df75eb0-804e-4b86-aa60-75689d7c7319" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6df75eb0-804e-4b86-aa60-75689d7c7319" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6df75eb0-804e-4b86-aa60-75689d7c7319" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode32", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c04d74d6-2b7e-423d-803b-07dd2445bc01" + }, + "attachedElementGuid" : { + "value" : "eef5da69-f2fe-4c33-93d4-93bd4c18612b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -11, + "y" : 0, + "z" : 1440 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c04d74d6-2b7e-423d-803b-07dd2445bc01" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c04d74d6-2b7e-423d-803b-07dd2445bc01" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c04d74d6-2b7e-423d-803b-07dd2445bc01" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode33", + "tags" : [ + + ], + "elementGuid" : { + "value" : "be95a776-833b-4a4b-b38a-3e228ab90c64" + }, + "attachedElementGuid" : { + "value" : "eef5da69-f2fe-4c33-93d4-93bd4c18612b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -20, + "y" : 0, + "z" : 1485 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "be95a776-833b-4a4b-b38a-3e228ab90c64" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "be95a776-833b-4a4b-b38a-3e228ab90c64" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "be95a776-833b-4a4b-b38a-3e228ab90c64" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "T2", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1d77e1db-d61c-4d50-941e-cb3919496379" + }, + "attachedElementGuid" : { + "value" : "53406812-55c6-47e2-9aac-198a37e7aaf2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "1d77e1db-d61c-4d50-941e-cb3919496379" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1d77e1db-d61c-4d50-941e-cb3919496379" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 1, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "1d77e1db-d61c-4d50-941e-cb3919496379" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 96.84, + "trackEndTime" : 128.51, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "1d77e1db-d61c-4d50-941e-cb3919496379" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b622741f-a1c6-484d-8814-fe9432044998" + }, + "attachedElementGuid" : { + "value" : "1d77e1db-d61c-4d50-941e-cb3919496379" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b622741f-a1c6-484d-8814-fe9432044998" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : false, + "time" : 98.34 + },{ + "value" : false, + "time" : 131.01 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + { + "startValue" : 32.01, + "endValue" : 5, + "startTime" : 16.17, + "endTime" : 5, + "animationCurveType" : 0 + } + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "dce4737c-26cd-4799-a769-984aa976bba9" + }, + "attachedElementGuid" : { + "value" : "b622741f-a1c6-484d-8814-fe9432044998" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "dce4737c-26cd-4799-a769-984aa976bba9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "dce4737c-26cd-4799-a769-984aa976bba9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0.5, + "g" : 0.8, + "b" : 1, + "a" : 0.5 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "dce4737c-26cd-4799-a769-984aa976bba9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode0", + "tags" : [ + + ], + "elementGuid" : { + "value" : "60107a1d-bcc6-4cbc-b98b-e82854f05d94" + }, + "attachedElementGuid" : { + "value" : "1d77e1db-d61c-4d50-941e-cb3919496379" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "60107a1d-bcc6-4cbc-b98b-e82854f05d94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "60107a1d-bcc6-4cbc-b98b-e82854f05d94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "60107a1d-bcc6-4cbc-b98b-e82854f05d94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode1", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5b9bee11-7880-44dc-997a-21f34af3be45" + }, + "attachedElementGuid" : { + "value" : "1d77e1db-d61c-4d50-941e-cb3919496379" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 45 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5b9bee11-7880-44dc-997a-21f34af3be45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5b9bee11-7880-44dc-997a-21f34af3be45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5b9bee11-7880-44dc-997a-21f34af3be45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode2", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f287d65c-5436-4204-8898-2ba8ae8b9f96" + }, + "attachedElementGuid" : { + "value" : "1d77e1db-d61c-4d50-941e-cb3919496379" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 90 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f287d65c-5436-4204-8898-2ba8ae8b9f96" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f287d65c-5436-4204-8898-2ba8ae8b9f96" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f287d65c-5436-4204-8898-2ba8ae8b9f96" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode3", + "tags" : [ + + ], + "elementGuid" : { + "value" : "50ad0603-6ecd-4d75-8d36-98f221ed3512" + }, + "attachedElementGuid" : { + "value" : "1d77e1db-d61c-4d50-941e-cb3919496379" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 135 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "50ad0603-6ecd-4d75-8d36-98f221ed3512" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "50ad0603-6ecd-4d75-8d36-98f221ed3512" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "50ad0603-6ecd-4d75-8d36-98f221ed3512" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode4", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e1d09834-05ad-4693-8698-fc59202a2917" + }, + "attachedElementGuid" : { + "value" : "1d77e1db-d61c-4d50-941e-cb3919496379" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 180 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e1d09834-05ad-4693-8698-fc59202a2917" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e1d09834-05ad-4693-8698-fc59202a2917" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e1d09834-05ad-4693-8698-fc59202a2917" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode5", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3bbf73c7-e51a-4cb6-808a-46c0e53d028a" + }, + "attachedElementGuid" : { + "value" : "1d77e1db-d61c-4d50-941e-cb3919496379" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 225 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3bbf73c7-e51a-4cb6-808a-46c0e53d028a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3bbf73c7-e51a-4cb6-808a-46c0e53d028a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3bbf73c7-e51a-4cb6-808a-46c0e53d028a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode6", + "tags" : [ + + ], + "elementGuid" : { + "value" : "215f7a65-62f1-47bf-af4a-b6a2f7534f31" + }, + "attachedElementGuid" : { + "value" : "1d77e1db-d61c-4d50-941e-cb3919496379" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 270 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "215f7a65-62f1-47bf-af4a-b6a2f7534f31" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "215f7a65-62f1-47bf-af4a-b6a2f7534f31" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "215f7a65-62f1-47bf-af4a-b6a2f7534f31" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode7", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8526f70d-eb47-47b8-a51b-4376df650a4c" + }, + "attachedElementGuid" : { + "value" : "1d77e1db-d61c-4d50-941e-cb3919496379" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 315 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8526f70d-eb47-47b8-a51b-4376df650a4c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8526f70d-eb47-47b8-a51b-4376df650a4c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8526f70d-eb47-47b8-a51b-4376df650a4c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode8", + "tags" : [ + + ], + "elementGuid" : { + "value" : "88631572-5129-4a7a-9297-a4763c4288a8" + }, + "attachedElementGuid" : { + "value" : "1d77e1db-d61c-4d50-941e-cb3919496379" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 360 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "88631572-5129-4a7a-9297-a4763c4288a8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "88631572-5129-4a7a-9297-a4763c4288a8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "88631572-5129-4a7a-9297-a4763c4288a8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode9", + "tags" : [ + + ], + "elementGuid" : { + "value" : "98269ac7-75e4-45f4-8b38-0c3441a0c831" + }, + "attachedElementGuid" : { + "value" : "1d77e1db-d61c-4d50-941e-cb3919496379" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 405 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "98269ac7-75e4-45f4-8b38-0c3441a0c831" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "98269ac7-75e4-45f4-8b38-0c3441a0c831" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "98269ac7-75e4-45f4-8b38-0c3441a0c831" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode10", + "tags" : [ + + ], + "elementGuid" : { + "value" : "db597422-e480-4d1c-afe7-3d9c20aa3cd3" + }, + "attachedElementGuid" : { + "value" : "1d77e1db-d61c-4d50-941e-cb3919496379" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 450 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "db597422-e480-4d1c-afe7-3d9c20aa3cd3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "db597422-e480-4d1c-afe7-3d9c20aa3cd3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "db597422-e480-4d1c-afe7-3d9c20aa3cd3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode11", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4661bdd4-8655-4258-9317-089a97d87cb4" + }, + "attachedElementGuid" : { + "value" : "1d77e1db-d61c-4d50-941e-cb3919496379" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 495 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4661bdd4-8655-4258-9317-089a97d87cb4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4661bdd4-8655-4258-9317-089a97d87cb4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4661bdd4-8655-4258-9317-089a97d87cb4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode12", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0df1f8f9-e297-4762-9b15-6acf84570332" + }, + "attachedElementGuid" : { + "value" : "1d77e1db-d61c-4d50-941e-cb3919496379" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 540 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0df1f8f9-e297-4762-9b15-6acf84570332" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0df1f8f9-e297-4762-9b15-6acf84570332" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0df1f8f9-e297-4762-9b15-6acf84570332" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode13", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2b7df423-6f12-4d74-8d3f-f5962a29a936" + }, + "attachedElementGuid" : { + "value" : "1d77e1db-d61c-4d50-941e-cb3919496379" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 585 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2b7df423-6f12-4d74-8d3f-f5962a29a936" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2b7df423-6f12-4d74-8d3f-f5962a29a936" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "2b7df423-6f12-4d74-8d3f-f5962a29a936" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode14", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1dc9ea3e-2d68-4a14-9395-a05ccbc90d9d" + }, + "attachedElementGuid" : { + "value" : "1d77e1db-d61c-4d50-941e-cb3919496379" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 630 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "1dc9ea3e-2d68-4a14-9395-a05ccbc90d9d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1dc9ea3e-2d68-4a14-9395-a05ccbc90d9d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "1dc9ea3e-2d68-4a14-9395-a05ccbc90d9d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode15", + "tags" : [ + + ], + "elementGuid" : { + "value" : "26c15fcb-645e-4f5e-b02a-7f92b10bfda4" + }, + "attachedElementGuid" : { + "value" : "1d77e1db-d61c-4d50-941e-cb3919496379" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 675 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "26c15fcb-645e-4f5e-b02a-7f92b10bfda4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "26c15fcb-645e-4f5e-b02a-7f92b10bfda4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "26c15fcb-645e-4f5e-b02a-7f92b10bfda4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode16", + "tags" : [ + + ], + "elementGuid" : { + "value" : "44fe2b55-f740-4dab-ad2f-827c51f553bd" + }, + "attachedElementGuid" : { + "value" : "1d77e1db-d61c-4d50-941e-cb3919496379" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -2, + "y" : 0, + "z" : 720 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "44fe2b55-f740-4dab-ad2f-827c51f553bd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "44fe2b55-f740-4dab-ad2f-827c51f553bd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "44fe2b55-f740-4dab-ad2f-827c51f553bd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode17", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b97ceccd-72f1-42ea-911d-90496755c248" + }, + "attachedElementGuid" : { + "value" : "1d77e1db-d61c-4d50-941e-cb3919496379" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0.5, + "z" : 765 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b97ceccd-72f1-42ea-911d-90496755c248" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b97ceccd-72f1-42ea-911d-90496755c248" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b97ceccd-72f1-42ea-911d-90496755c248" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode18", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f231245d-5659-4254-a3d6-8a16f8632fcf" + }, + "attachedElementGuid" : { + "value" : "1d77e1db-d61c-4d50-941e-cb3919496379" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 1, + "z" : 810 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f231245d-5659-4254-a3d6-8a16f8632fcf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f231245d-5659-4254-a3d6-8a16f8632fcf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f231245d-5659-4254-a3d6-8a16f8632fcf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode19", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e56ee680-1f98-4396-bcb1-ea08d9aa84d0" + }, + "attachedElementGuid" : { + "value" : "1d77e1db-d61c-4d50-941e-cb3919496379" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -1, + "y" : 0, + "z" : 855 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e56ee680-1f98-4396-bcb1-ea08d9aa84d0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e56ee680-1f98-4396-bcb1-ea08d9aa84d0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e56ee680-1f98-4396-bcb1-ea08d9aa84d0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode20", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3481297a-8b08-4b87-9805-05d1412b11c9" + }, + "attachedElementGuid" : { + "value" : "1d77e1db-d61c-4d50-941e-cb3919496379" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 7, + "y" : 3, + "z" : 900 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3481297a-8b08-4b87-9805-05d1412b11c9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3481297a-8b08-4b87-9805-05d1412b11c9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3481297a-8b08-4b87-9805-05d1412b11c9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode21", + "tags" : [ + + ], + "elementGuid" : { + "value" : "263833f6-e0ad-403b-a6ca-1bbacad85bff" + }, + "attachedElementGuid" : { + "value" : "1d77e1db-d61c-4d50-941e-cb3919496379" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2, + "y" : 0, + "z" : 945 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "263833f6-e0ad-403b-a6ca-1bbacad85bff" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "263833f6-e0ad-403b-a6ca-1bbacad85bff" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "263833f6-e0ad-403b-a6ca-1bbacad85bff" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode22", + "tags" : [ + + ], + "elementGuid" : { + "value" : "be90c7c7-8329-4482-9b61-06efe4085626" + }, + "attachedElementGuid" : { + "value" : "1d77e1db-d61c-4d50-941e-cb3919496379" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 1, + "z" : 990 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "be90c7c7-8329-4482-9b61-06efe4085626" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "be90c7c7-8329-4482-9b61-06efe4085626" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "be90c7c7-8329-4482-9b61-06efe4085626" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode23", + "tags" : [ + + ], + "elementGuid" : { + "value" : "dcd63f83-8588-4697-9359-c5fa352660da" + }, + "attachedElementGuid" : { + "value" : "1d77e1db-d61c-4d50-941e-cb3919496379" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -1, + "y" : 0, + "z" : 1035 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "dcd63f83-8588-4697-9359-c5fa352660da" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "dcd63f83-8588-4697-9359-c5fa352660da" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "dcd63f83-8588-4697-9359-c5fa352660da" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode24", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4b68b4d4-466a-459d-82c8-8b9f4ef0c3e3" + }, + "attachedElementGuid" : { + "value" : "1d77e1db-d61c-4d50-941e-cb3919496379" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 7, + "y" : 3, + "z" : 1080 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4b68b4d4-466a-459d-82c8-8b9f4ef0c3e3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4b68b4d4-466a-459d-82c8-8b9f4ef0c3e3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4b68b4d4-466a-459d-82c8-8b9f4ef0c3e3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode25", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a2efbb98-3ca1-48d5-814a-fa053c2f91d1" + }, + "attachedElementGuid" : { + "value" : "1d77e1db-d61c-4d50-941e-cb3919496379" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2, + "y" : 0, + "z" : 1125 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a2efbb98-3ca1-48d5-814a-fa053c2f91d1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a2efbb98-3ca1-48d5-814a-fa053c2f91d1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a2efbb98-3ca1-48d5-814a-fa053c2f91d1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode26", + "tags" : [ + + ], + "elementGuid" : { + "value" : "64d43f02-55a7-4301-8ca6-1bebb759dfc3" + }, + "attachedElementGuid" : { + "value" : "1d77e1db-d61c-4d50-941e-cb3919496379" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 1, + "z" : 1170 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "64d43f02-55a7-4301-8ca6-1bebb759dfc3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "64d43f02-55a7-4301-8ca6-1bebb759dfc3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "64d43f02-55a7-4301-8ca6-1bebb759dfc3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode27", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8975d81a-4525-4505-808f-5ca24c835eb3" + }, + "attachedElementGuid" : { + "value" : "1d77e1db-d61c-4d50-941e-cb3919496379" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -1, + "y" : 0, + "z" : 1215 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8975d81a-4525-4505-808f-5ca24c835eb3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8975d81a-4525-4505-808f-5ca24c835eb3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8975d81a-4525-4505-808f-5ca24c835eb3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode28", + "tags" : [ + + ], + "elementGuid" : { + "value" : "be0879fb-9691-4449-94ff-f47afe080a07" + }, + "attachedElementGuid" : { + "value" : "1d77e1db-d61c-4d50-941e-cb3919496379" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 7, + "y" : 3, + "z" : 1260 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "be0879fb-9691-4449-94ff-f47afe080a07" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "be0879fb-9691-4449-94ff-f47afe080a07" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "be0879fb-9691-4449-94ff-f47afe080a07" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode29", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8c003566-6897-4f4a-89b2-644ccf138ee2" + }, + "attachedElementGuid" : { + "value" : "1d77e1db-d61c-4d50-941e-cb3919496379" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2, + "y" : 0, + "z" : 1305 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8c003566-6897-4f4a-89b2-644ccf138ee2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8c003566-6897-4f4a-89b2-644ccf138ee2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8c003566-6897-4f4a-89b2-644ccf138ee2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode30", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5183b66a-5164-4399-938a-cb14f2087066" + }, + "attachedElementGuid" : { + "value" : "1d77e1db-d61c-4d50-941e-cb3919496379" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 1, + "z" : 1350 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5183b66a-5164-4399-938a-cb14f2087066" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5183b66a-5164-4399-938a-cb14f2087066" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5183b66a-5164-4399-938a-cb14f2087066" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode31", + "tags" : [ + + ], + "elementGuid" : { + "value" : "df06adbd-e8ce-4dfd-9dbb-030695033035" + }, + "attachedElementGuid" : { + "value" : "1d77e1db-d61c-4d50-941e-cb3919496379" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 1, + "y" : 0, + "z" : 1395 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "df06adbd-e8ce-4dfd-9dbb-030695033035" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "df06adbd-e8ce-4dfd-9dbb-030695033035" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "df06adbd-e8ce-4dfd-9dbb-030695033035" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode32", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a1b7c873-8f8d-45b9-b1dc-369ecc775025" + }, + "attachedElementGuid" : { + "value" : "1d77e1db-d61c-4d50-941e-cb3919496379" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 1, + "y" : 0, + "z" : 1440 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a1b7c873-8f8d-45b9-b1dc-369ecc775025" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a1b7c873-8f8d-45b9-b1dc-369ecc775025" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a1b7c873-8f8d-45b9-b1dc-369ecc775025" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode33", + "tags" : [ + + ], + "elementGuid" : { + "value" : "331674ce-1b52-4715-9d45-5710b9e08d0d" + }, + "attachedElementGuid" : { + "value" : "1d77e1db-d61c-4d50-941e-cb3919496379" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 1485 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "331674ce-1b52-4715-9d45-5710b9e08d0d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "331674ce-1b52-4715-9d45-5710b9e08d0d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "331674ce-1b52-4715-9d45-5710b9e08d0d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "T3", + "tags" : [ + + ], + "elementGuid" : { + "value" : "44276c2d-3d31-4cda-85e2-ab01f4bc3fc6" + }, + "attachedElementGuid" : { + "value" : "53406812-55c6-47e2-9aac-198a37e7aaf2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "44276c2d-3d31-4cda-85e2-ab01f4bc3fc6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "44276c2d-3d31-4cda-85e2-ab01f4bc3fc6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 1, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "44276c2d-3d31-4cda-85e2-ab01f4bc3fc6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 96.84, + "trackEndTime" : 128.51, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "44276c2d-3d31-4cda-85e2-ab01f4bc3fc6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "71adc16a-4ea0-4343-8785-0bd5c22a01f4" + }, + "attachedElementGuid" : { + "value" : "44276c2d-3d31-4cda-85e2-ab01f4bc3fc6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "71adc16a-4ea0-4343-8785-0bd5c22a01f4" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : false, + "time" : 98.34 + },{ + "value" : false, + "time" : 131.01 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + { + "startValue" : 32.01, + "endValue" : 5, + "startTime" : 16.17, + "endTime" : 5, + "animationCurveType" : 0 + } + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f523f29f-855d-47fc-bebf-37ccb21cb1a6" + }, + "attachedElementGuid" : { + "value" : "71adc16a-4ea0-4343-8785-0bd5c22a01f4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f523f29f-855d-47fc-bebf-37ccb21cb1a6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f523f29f-855d-47fc-bebf-37ccb21cb1a6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0.5, + "g" : 0.8, + "b" : 1, + "a" : 0.5 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "f523f29f-855d-47fc-bebf-37ccb21cb1a6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode0", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3cb0f51f-7651-4f93-9998-88531caeb01f" + }, + "attachedElementGuid" : { + "value" : "44276c2d-3d31-4cda-85e2-ab01f4bc3fc6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3cb0f51f-7651-4f93-9998-88531caeb01f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3cb0f51f-7651-4f93-9998-88531caeb01f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3cb0f51f-7651-4f93-9998-88531caeb01f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode1", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b46e5618-0278-4208-b006-0c2536260baa" + }, + "attachedElementGuid" : { + "value" : "44276c2d-3d31-4cda-85e2-ab01f4bc3fc6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 45 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b46e5618-0278-4208-b006-0c2536260baa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b46e5618-0278-4208-b006-0c2536260baa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b46e5618-0278-4208-b006-0c2536260baa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode2", + "tags" : [ + + ], + "elementGuid" : { + "value" : "58bd9824-4efc-4bb2-ba7e-806bd273783a" + }, + "attachedElementGuid" : { + "value" : "44276c2d-3d31-4cda-85e2-ab01f4bc3fc6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 90 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "58bd9824-4efc-4bb2-ba7e-806bd273783a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "58bd9824-4efc-4bb2-ba7e-806bd273783a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "58bd9824-4efc-4bb2-ba7e-806bd273783a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode3", + "tags" : [ + + ], + "elementGuid" : { + "value" : "129d439b-977c-4959-accf-bad611af8d62" + }, + "attachedElementGuid" : { + "value" : "44276c2d-3d31-4cda-85e2-ab01f4bc3fc6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 135 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "129d439b-977c-4959-accf-bad611af8d62" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "129d439b-977c-4959-accf-bad611af8d62" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "129d439b-977c-4959-accf-bad611af8d62" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode4", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cc9e60a1-a9e0-43b3-bed7-601681173df9" + }, + "attachedElementGuid" : { + "value" : "44276c2d-3d31-4cda-85e2-ab01f4bc3fc6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 180 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "cc9e60a1-a9e0-43b3-bed7-601681173df9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "cc9e60a1-a9e0-43b3-bed7-601681173df9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "cc9e60a1-a9e0-43b3-bed7-601681173df9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode5", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e79ee930-975a-4909-ad4e-d3adbb60b046" + }, + "attachedElementGuid" : { + "value" : "44276c2d-3d31-4cda-85e2-ab01f4bc3fc6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 225 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e79ee930-975a-4909-ad4e-d3adbb60b046" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e79ee930-975a-4909-ad4e-d3adbb60b046" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e79ee930-975a-4909-ad4e-d3adbb60b046" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode6", + "tags" : [ + + ], + "elementGuid" : { + "value" : "81d0fa7f-709d-4a89-99f9-7e93d495c11b" + }, + "attachedElementGuid" : { + "value" : "44276c2d-3d31-4cda-85e2-ab01f4bc3fc6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 270 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "81d0fa7f-709d-4a89-99f9-7e93d495c11b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "81d0fa7f-709d-4a89-99f9-7e93d495c11b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "81d0fa7f-709d-4a89-99f9-7e93d495c11b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode7", + "tags" : [ + + ], + "elementGuid" : { + "value" : "364f1084-a163-4508-baca-375ebe42716e" + }, + "attachedElementGuid" : { + "value" : "44276c2d-3d31-4cda-85e2-ab01f4bc3fc6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 315 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "364f1084-a163-4508-baca-375ebe42716e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "364f1084-a163-4508-baca-375ebe42716e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "364f1084-a163-4508-baca-375ebe42716e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode8", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ae550b40-0b18-4d1e-a800-cc7f7865f356" + }, + "attachedElementGuid" : { + "value" : "44276c2d-3d31-4cda-85e2-ab01f4bc3fc6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 360 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ae550b40-0b18-4d1e-a800-cc7f7865f356" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ae550b40-0b18-4d1e-a800-cc7f7865f356" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ae550b40-0b18-4d1e-a800-cc7f7865f356" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode9", + "tags" : [ + + ], + "elementGuid" : { + "value" : "04379d00-25fc-4377-9f2f-78c1ea8369ad" + }, + "attachedElementGuid" : { + "value" : "44276c2d-3d31-4cda-85e2-ab01f4bc3fc6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 405 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "04379d00-25fc-4377-9f2f-78c1ea8369ad" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "04379d00-25fc-4377-9f2f-78c1ea8369ad" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "04379d00-25fc-4377-9f2f-78c1ea8369ad" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode10", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ff40d44b-7d4a-460f-a4cd-feb915abba63" + }, + "attachedElementGuid" : { + "value" : "44276c2d-3d31-4cda-85e2-ab01f4bc3fc6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 450 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ff40d44b-7d4a-460f-a4cd-feb915abba63" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ff40d44b-7d4a-460f-a4cd-feb915abba63" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ff40d44b-7d4a-460f-a4cd-feb915abba63" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode11", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0e33e698-c53e-4c46-b53d-4ff5e2a61b0c" + }, + "attachedElementGuid" : { + "value" : "44276c2d-3d31-4cda-85e2-ab01f4bc3fc6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 495 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0e33e698-c53e-4c46-b53d-4ff5e2a61b0c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0e33e698-c53e-4c46-b53d-4ff5e2a61b0c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0e33e698-c53e-4c46-b53d-4ff5e2a61b0c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode12", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d063dc8a-a830-4205-be91-f5c3a6988753" + }, + "attachedElementGuid" : { + "value" : "44276c2d-3d31-4cda-85e2-ab01f4bc3fc6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 540 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d063dc8a-a830-4205-be91-f5c3a6988753" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d063dc8a-a830-4205-be91-f5c3a6988753" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d063dc8a-a830-4205-be91-f5c3a6988753" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode13", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bd9dbad6-cab6-4a91-9f13-72b418b63542" + }, + "attachedElementGuid" : { + "value" : "44276c2d-3d31-4cda-85e2-ab01f4bc3fc6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 585 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "bd9dbad6-cab6-4a91-9f13-72b418b63542" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bd9dbad6-cab6-4a91-9f13-72b418b63542" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "bd9dbad6-cab6-4a91-9f13-72b418b63542" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode14", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0c7c896a-8ce3-4a67-b40e-0777c50c1aa9" + }, + "attachedElementGuid" : { + "value" : "44276c2d-3d31-4cda-85e2-ab01f4bc3fc6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 630 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0c7c896a-8ce3-4a67-b40e-0777c50c1aa9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0c7c896a-8ce3-4a67-b40e-0777c50c1aa9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0c7c896a-8ce3-4a67-b40e-0777c50c1aa9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode15", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d75c9584-07ab-41ec-8545-cc384bf31b5d" + }, + "attachedElementGuid" : { + "value" : "44276c2d-3d31-4cda-85e2-ab01f4bc3fc6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 675 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d75c9584-07ab-41ec-8545-cc384bf31b5d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d75c9584-07ab-41ec-8545-cc384bf31b5d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d75c9584-07ab-41ec-8545-cc384bf31b5d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode16", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0b3c25ae-e672-47eb-807a-1944ee548c71" + }, + "attachedElementGuid" : { + "value" : "44276c2d-3d31-4cda-85e2-ab01f4bc3fc6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -4, + "y" : 0, + "z" : 720 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0b3c25ae-e672-47eb-807a-1944ee548c71" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0b3c25ae-e672-47eb-807a-1944ee548c71" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0b3c25ae-e672-47eb-807a-1944ee548c71" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode17", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f3c80d7a-4bfc-4918-a2fa-e7eb648dd942" + }, + "attachedElementGuid" : { + "value" : "44276c2d-3d31-4cda-85e2-ab01f4bc3fc6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -6, + "y" : 2, + "z" : 765 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f3c80d7a-4bfc-4918-a2fa-e7eb648dd942" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f3c80d7a-4bfc-4918-a2fa-e7eb648dd942" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f3c80d7a-4bfc-4918-a2fa-e7eb648dd942" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode18", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2d58b65d-4444-4de4-92a2-9eccc22a6281" + }, + "attachedElementGuid" : { + "value" : "44276c2d-3d31-4cda-85e2-ab01f4bc3fc6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -6, + "y" : 3, + "z" : 810 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2d58b65d-4444-4de4-92a2-9eccc22a6281" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2d58b65d-4444-4de4-92a2-9eccc22a6281" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "2d58b65d-4444-4de4-92a2-9eccc22a6281" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode19", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3b60e136-7341-4158-a5e5-6ddbb2880f80" + }, + "attachedElementGuid" : { + "value" : "44276c2d-3d31-4cda-85e2-ab01f4bc3fc6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -2, + "y" : 0, + "z" : 855 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3b60e136-7341-4158-a5e5-6ddbb2880f80" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3b60e136-7341-4158-a5e5-6ddbb2880f80" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3b60e136-7341-4158-a5e5-6ddbb2880f80" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode20", + "tags" : [ + + ], + "elementGuid" : { + "value" : "eae46211-b894-49c4-a418-6d8022bb4f2b" + }, + "attachedElementGuid" : { + "value" : "44276c2d-3d31-4cda-85e2-ab01f4bc3fc6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 1, + "z" : 900 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "eae46211-b894-49c4-a418-6d8022bb4f2b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "eae46211-b894-49c4-a418-6d8022bb4f2b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "eae46211-b894-49c4-a418-6d8022bb4f2b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode21", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bebca931-c43d-497e-a98a-759194469ce3" + }, + "attachedElementGuid" : { + "value" : "44276c2d-3d31-4cda-85e2-ab01f4bc3fc6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 1, + "y" : 0, + "z" : 945 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "bebca931-c43d-497e-a98a-759194469ce3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bebca931-c43d-497e-a98a-759194469ce3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "bebca931-c43d-497e-a98a-759194469ce3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode22", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7e3cbffe-07e1-49b4-9a11-b9782e91b357" + }, + "attachedElementGuid" : { + "value" : "44276c2d-3d31-4cda-85e2-ab01f4bc3fc6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -7, + "y" : 3, + "z" : 990 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7e3cbffe-07e1-49b4-9a11-b9782e91b357" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7e3cbffe-07e1-49b4-9a11-b9782e91b357" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "7e3cbffe-07e1-49b4-9a11-b9782e91b357" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode23", + "tags" : [ + + ], + "elementGuid" : { + "value" : "54c24c3b-583e-4a37-bcae-39c457ca26a4" + }, + "attachedElementGuid" : { + "value" : "44276c2d-3d31-4cda-85e2-ab01f4bc3fc6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -2, + "y" : 0, + "z" : 1035 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "54c24c3b-583e-4a37-bcae-39c457ca26a4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "54c24c3b-583e-4a37-bcae-39c457ca26a4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "54c24c3b-583e-4a37-bcae-39c457ca26a4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode24", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1bb515fa-3ae9-4e30-9ba7-5c806fb5496f" + }, + "attachedElementGuid" : { + "value" : "44276c2d-3d31-4cda-85e2-ab01f4bc3fc6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 1, + "z" : 1080 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "1bb515fa-3ae9-4e30-9ba7-5c806fb5496f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1bb515fa-3ae9-4e30-9ba7-5c806fb5496f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "1bb515fa-3ae9-4e30-9ba7-5c806fb5496f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode25", + "tags" : [ + + ], + "elementGuid" : { + "value" : "53b0ef57-10ee-4b49-b28f-2e3ef6f37d90" + }, + "attachedElementGuid" : { + "value" : "44276c2d-3d31-4cda-85e2-ab01f4bc3fc6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 1, + "y" : 0, + "z" : 1125 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "53b0ef57-10ee-4b49-b28f-2e3ef6f37d90" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "53b0ef57-10ee-4b49-b28f-2e3ef6f37d90" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "53b0ef57-10ee-4b49-b28f-2e3ef6f37d90" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode26", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b3828093-acaa-4c25-9371-3bc04fff9dcd" + }, + "attachedElementGuid" : { + "value" : "44276c2d-3d31-4cda-85e2-ab01f4bc3fc6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -7, + "y" : 3, + "z" : 1170 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b3828093-acaa-4c25-9371-3bc04fff9dcd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b3828093-acaa-4c25-9371-3bc04fff9dcd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b3828093-acaa-4c25-9371-3bc04fff9dcd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode27", + "tags" : [ + + ], + "elementGuid" : { + "value" : "95a942c5-8ae6-407b-9c0a-9e848612a126" + }, + "attachedElementGuid" : { + "value" : "44276c2d-3d31-4cda-85e2-ab01f4bc3fc6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -2, + "y" : 0, + "z" : 1215 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "95a942c5-8ae6-407b-9c0a-9e848612a126" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "95a942c5-8ae6-407b-9c0a-9e848612a126" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "95a942c5-8ae6-407b-9c0a-9e848612a126" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode28", + "tags" : [ + + ], + "elementGuid" : { + "value" : "69951582-f9a3-4f0b-96e1-1c66b5dac45a" + }, + "attachedElementGuid" : { + "value" : "44276c2d-3d31-4cda-85e2-ab01f4bc3fc6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 1, + "z" : 1260 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "69951582-f9a3-4f0b-96e1-1c66b5dac45a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "69951582-f9a3-4f0b-96e1-1c66b5dac45a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "69951582-f9a3-4f0b-96e1-1c66b5dac45a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode29", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c4e447f3-2e2b-4b2c-806a-cac81fca25e0" + }, + "attachedElementGuid" : { + "value" : "44276c2d-3d31-4cda-85e2-ab01f4bc3fc6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 1, + "y" : 0, + "z" : 1305 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c4e447f3-2e2b-4b2c-806a-cac81fca25e0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c4e447f3-2e2b-4b2c-806a-cac81fca25e0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c4e447f3-2e2b-4b2c-806a-cac81fca25e0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode30", + "tags" : [ + + ], + "elementGuid" : { + "value" : "32048d23-d5a7-4fe9-b102-df56b939aea4" + }, + "attachedElementGuid" : { + "value" : "44276c2d-3d31-4cda-85e2-ab01f4bc3fc6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -7, + "y" : 3, + "z" : 1350 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "32048d23-d5a7-4fe9-b102-df56b939aea4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "32048d23-d5a7-4fe9-b102-df56b939aea4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "32048d23-d5a7-4fe9-b102-df56b939aea4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode31", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bc266fbb-057a-4aaf-8a01-da89e70092ae" + }, + "attachedElementGuid" : { + "value" : "44276c2d-3d31-4cda-85e2-ab01f4bc3fc6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -1, + "y" : 0, + "z" : 1395 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "bc266fbb-057a-4aaf-8a01-da89e70092ae" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bc266fbb-057a-4aaf-8a01-da89e70092ae" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "bc266fbb-057a-4aaf-8a01-da89e70092ae" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode32", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7d3f163c-be08-4be6-8e68-432c1790a1e4" + }, + "attachedElementGuid" : { + "value" : "44276c2d-3d31-4cda-85e2-ab01f4bc3fc6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -1, + "y" : 0, + "z" : 1440 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7d3f163c-be08-4be6-8e68-432c1790a1e4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7d3f163c-be08-4be6-8e68-432c1790a1e4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "7d3f163c-be08-4be6-8e68-432c1790a1e4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode33", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f2af64cc-ed88-4513-94d8-82e816db006d" + }, + "attachedElementGuid" : { + "value" : "44276c2d-3d31-4cda-85e2-ab01f4bc3fc6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 1485 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f2af64cc-ed88-4513-94d8-82e816db006d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f2af64cc-ed88-4513-94d8-82e816db006d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f2af64cc-ed88-4513-94d8-82e816db006d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "T4", + "tags" : [ + + ], + "elementGuid" : { + "value" : "29a10ac3-da07-488a-b241-61c31a31529f" + }, + "attachedElementGuid" : { + "value" : "53406812-55c6-47e2-9aac-198a37e7aaf2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "29a10ac3-da07-488a-b241-61c31a31529f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "29a10ac3-da07-488a-b241-61c31a31529f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 1, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "29a10ac3-da07-488a-b241-61c31a31529f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 96.84, + "trackEndTime" : 128.51, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "29a10ac3-da07-488a-b241-61c31a31529f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "aeb1686b-f8e2-4935-9b07-7c8920d8afe7" + }, + "attachedElementGuid" : { + "value" : "29a10ac3-da07-488a-b241-61c31a31529f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "aeb1686b-f8e2-4935-9b07-7c8920d8afe7" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : false, + "time" : 98.34 + },{ + "value" : false, + "time" : 131.01 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + { + "startValue" : 32.01, + "endValue" : 5, + "startTime" : 16.17, + "endTime" : 5, + "animationCurveType" : 0 + } + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "694bc5f2-9684-4b74-95cd-18919d275d07" + }, + "attachedElementGuid" : { + "value" : "aeb1686b-f8e2-4935-9b07-7c8920d8afe7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "694bc5f2-9684-4b74-95cd-18919d275d07" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "694bc5f2-9684-4b74-95cd-18919d275d07" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0.5, + "g" : 0.8, + "b" : 1, + "a" : 0.5 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "694bc5f2-9684-4b74-95cd-18919d275d07" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode0", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fa85d054-7872-4241-b03a-1135fcffcef9" + }, + "attachedElementGuid" : { + "value" : "29a10ac3-da07-488a-b241-61c31a31529f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "fa85d054-7872-4241-b03a-1135fcffcef9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fa85d054-7872-4241-b03a-1135fcffcef9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "fa85d054-7872-4241-b03a-1135fcffcef9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode1", + "tags" : [ + + ], + "elementGuid" : { + "value" : "84fd4fa5-d73a-4666-acc5-227738281d64" + }, + "attachedElementGuid" : { + "value" : "29a10ac3-da07-488a-b241-61c31a31529f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 4, + "z" : 45 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "84fd4fa5-d73a-4666-acc5-227738281d64" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "84fd4fa5-d73a-4666-acc5-227738281d64" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "84fd4fa5-d73a-4666-acc5-227738281d64" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode2", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d829b67f-3673-4ad0-a727-dd6a827de36c" + }, + "attachedElementGuid" : { + "value" : "29a10ac3-da07-488a-b241-61c31a31529f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 2, + "z" : 90 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d829b67f-3673-4ad0-a727-dd6a827de36c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d829b67f-3673-4ad0-a727-dd6a827de36c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d829b67f-3673-4ad0-a727-dd6a827de36c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode3", + "tags" : [ + + ], + "elementGuid" : { + "value" : "962c908e-8bcc-4554-86c7-af64bf4b99eb" + }, + "attachedElementGuid" : { + "value" : "29a10ac3-da07-488a-b241-61c31a31529f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 3, + "y" : 0, + "z" : 135 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "962c908e-8bcc-4554-86c7-af64bf4b99eb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "962c908e-8bcc-4554-86c7-af64bf4b99eb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "962c908e-8bcc-4554-86c7-af64bf4b99eb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode4", + "tags" : [ + + ], + "elementGuid" : { + "value" : "36c81b7a-8222-4250-bbeb-aca1811e2b14" + }, + "attachedElementGuid" : { + "value" : "29a10ac3-da07-488a-b241-61c31a31529f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 2, + "z" : 180 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "36c81b7a-8222-4250-bbeb-aca1811e2b14" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "36c81b7a-8222-4250-bbeb-aca1811e2b14" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "36c81b7a-8222-4250-bbeb-aca1811e2b14" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode5", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b147c251-4d16-4f5e-a90b-b2496291d31f" + }, + "attachedElementGuid" : { + "value" : "29a10ac3-da07-488a-b241-61c31a31529f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 4, + "z" : 225 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b147c251-4d16-4f5e-a90b-b2496291d31f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b147c251-4d16-4f5e-a90b-b2496291d31f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b147c251-4d16-4f5e-a90b-b2496291d31f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode6", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6dc7da3a-1f6e-4845-acdf-08d6a1b00128" + }, + "attachedElementGuid" : { + "value" : "29a10ac3-da07-488a-b241-61c31a31529f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 2, + "z" : 270 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6dc7da3a-1f6e-4845-acdf-08d6a1b00128" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6dc7da3a-1f6e-4845-acdf-08d6a1b00128" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6dc7da3a-1f6e-4845-acdf-08d6a1b00128" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode7", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2ed9ba25-2897-4f7a-97a5-4a42d99f5da6" + }, + "attachedElementGuid" : { + "value" : "29a10ac3-da07-488a-b241-61c31a31529f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 3, + "y" : 0, + "z" : 315 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2ed9ba25-2897-4f7a-97a5-4a42d99f5da6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2ed9ba25-2897-4f7a-97a5-4a42d99f5da6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "2ed9ba25-2897-4f7a-97a5-4a42d99f5da6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode8", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b29a7297-8693-4b6e-92e6-547c5e0b6d12" + }, + "attachedElementGuid" : { + "value" : "29a10ac3-da07-488a-b241-61c31a31529f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 2, + "z" : 360 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b29a7297-8693-4b6e-92e6-547c5e0b6d12" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b29a7297-8693-4b6e-92e6-547c5e0b6d12" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b29a7297-8693-4b6e-92e6-547c5e0b6d12" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode9", + "tags" : [ + + ], + "elementGuid" : { + "value" : "aa490d32-ffbf-4819-a7a9-481e3f3305e2" + }, + "attachedElementGuid" : { + "value" : "29a10ac3-da07-488a-b241-61c31a31529f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 4, + "z" : 405 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "aa490d32-ffbf-4819-a7a9-481e3f3305e2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "aa490d32-ffbf-4819-a7a9-481e3f3305e2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "aa490d32-ffbf-4819-a7a9-481e3f3305e2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode10", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f6dd0f59-7099-4bd9-a223-8e6f0fc425c3" + }, + "attachedElementGuid" : { + "value" : "29a10ac3-da07-488a-b241-61c31a31529f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 2, + "z" : 450 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f6dd0f59-7099-4bd9-a223-8e6f0fc425c3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f6dd0f59-7099-4bd9-a223-8e6f0fc425c3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f6dd0f59-7099-4bd9-a223-8e6f0fc425c3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode11", + "tags" : [ + + ], + "elementGuid" : { + "value" : "637050a3-341a-431f-8718-c15c6b8e3176" + }, + "attachedElementGuid" : { + "value" : "29a10ac3-da07-488a-b241-61c31a31529f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 3, + "y" : 0, + "z" : 495 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "637050a3-341a-431f-8718-c15c6b8e3176" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "637050a3-341a-431f-8718-c15c6b8e3176" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "637050a3-341a-431f-8718-c15c6b8e3176" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode12", + "tags" : [ + + ], + "elementGuid" : { + "value" : "45e2c014-3753-4b2e-8ca8-3d7940f71ee4" + }, + "attachedElementGuid" : { + "value" : "29a10ac3-da07-488a-b241-61c31a31529f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 2, + "z" : 540 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "45e2c014-3753-4b2e-8ca8-3d7940f71ee4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "45e2c014-3753-4b2e-8ca8-3d7940f71ee4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "45e2c014-3753-4b2e-8ca8-3d7940f71ee4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode13", + "tags" : [ + + ], + "elementGuid" : { + "value" : "30d31598-6bd5-4560-800f-2c314ca21353" + }, + "attachedElementGuid" : { + "value" : "29a10ac3-da07-488a-b241-61c31a31529f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 4, + "z" : 585 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "30d31598-6bd5-4560-800f-2c314ca21353" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "30d31598-6bd5-4560-800f-2c314ca21353" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "30d31598-6bd5-4560-800f-2c314ca21353" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode14", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bb26258e-cb5f-4110-a225-54ef67c6c130" + }, + "attachedElementGuid" : { + "value" : "29a10ac3-da07-488a-b241-61c31a31529f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 2, + "z" : 630 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "bb26258e-cb5f-4110-a225-54ef67c6c130" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bb26258e-cb5f-4110-a225-54ef67c6c130" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "bb26258e-cb5f-4110-a225-54ef67c6c130" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode15", + "tags" : [ + + ], + "elementGuid" : { + "value" : "62ddbc6e-411b-4b0a-ab83-584d51c54472" + }, + "attachedElementGuid" : { + "value" : "29a10ac3-da07-488a-b241-61c31a31529f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 3, + "y" : 0, + "z" : 675 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "62ddbc6e-411b-4b0a-ab83-584d51c54472" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "62ddbc6e-411b-4b0a-ab83-584d51c54472" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "62ddbc6e-411b-4b0a-ab83-584d51c54472" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode16", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7579ae05-43c3-4da1-9ffd-22b68f5524a0" + }, + "attachedElementGuid" : { + "value" : "29a10ac3-da07-488a-b241-61c31a31529f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 720 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7579ae05-43c3-4da1-9ffd-22b68f5524a0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7579ae05-43c3-4da1-9ffd-22b68f5524a0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "7579ae05-43c3-4da1-9ffd-22b68f5524a0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode17", + "tags" : [ + + ], + "elementGuid" : { + "value" : "03c54052-00ac-4077-a27d-4461c528d26c" + }, + "attachedElementGuid" : { + "value" : "29a10ac3-da07-488a-b241-61c31a31529f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -4, + "y" : 0, + "z" : 765 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "03c54052-00ac-4077-a27d-4461c528d26c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "03c54052-00ac-4077-a27d-4461c528d26c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "03c54052-00ac-4077-a27d-4461c528d26c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode18", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c7805a3b-a2b1-4461-92a1-4e48365a628c" + }, + "attachedElementGuid" : { + "value" : "29a10ac3-da07-488a-b241-61c31a31529f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -4, + "y" : 0, + "z" : 810 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c7805a3b-a2b1-4461-92a1-4e48365a628c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c7805a3b-a2b1-4461-92a1-4e48365a628c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c7805a3b-a2b1-4461-92a1-4e48365a628c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode19", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9dfd938f-4a0a-4a3e-8059-82d8727adfc3" + }, + "attachedElementGuid" : { + "value" : "29a10ac3-da07-488a-b241-61c31a31529f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2, + "y" : 2, + "z" : 855 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9dfd938f-4a0a-4a3e-8059-82d8727adfc3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9dfd938f-4a0a-4a3e-8059-82d8727adfc3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "9dfd938f-4a0a-4a3e-8059-82d8727adfc3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode20", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3adaebed-93c7-4985-97c7-30240408a19f" + }, + "attachedElementGuid" : { + "value" : "29a10ac3-da07-488a-b241-61c31a31529f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 6, + "y" : 4, + "z" : 900 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3adaebed-93c7-4985-97c7-30240408a19f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3adaebed-93c7-4985-97c7-30240408a19f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3adaebed-93c7-4985-97c7-30240408a19f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode21", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e02e32a1-1686-4846-adc3-4719544c19c6" + }, + "attachedElementGuid" : { + "value" : "29a10ac3-da07-488a-b241-61c31a31529f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 945 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e02e32a1-1686-4846-adc3-4719544c19c6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e02e32a1-1686-4846-adc3-4719544c19c6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e02e32a1-1686-4846-adc3-4719544c19c6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode22", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6128c5d1-5871-44c7-be26-455d533d7810" + }, + "attachedElementGuid" : { + "value" : "29a10ac3-da07-488a-b241-61c31a31529f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -4, + "y" : 0, + "z" : 990 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6128c5d1-5871-44c7-be26-455d533d7810" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6128c5d1-5871-44c7-be26-455d533d7810" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6128c5d1-5871-44c7-be26-455d533d7810" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode23", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f051dc1d-b0be-435e-87f4-a1583bb80614" + }, + "attachedElementGuid" : { + "value" : "29a10ac3-da07-488a-b241-61c31a31529f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2, + "y" : 2, + "z" : 1035 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f051dc1d-b0be-435e-87f4-a1583bb80614" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f051dc1d-b0be-435e-87f4-a1583bb80614" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f051dc1d-b0be-435e-87f4-a1583bb80614" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode24", + "tags" : [ + + ], + "elementGuid" : { + "value" : "835bab57-61e8-4b9d-9956-aff7f18a90e4" + }, + "attachedElementGuid" : { + "value" : "29a10ac3-da07-488a-b241-61c31a31529f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 6, + "y" : 4, + "z" : 1080 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "835bab57-61e8-4b9d-9956-aff7f18a90e4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "835bab57-61e8-4b9d-9956-aff7f18a90e4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "835bab57-61e8-4b9d-9956-aff7f18a90e4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode25", + "tags" : [ + + ], + "elementGuid" : { + "value" : "dc88bc75-128a-482f-af84-4ba86f5ed294" + }, + "attachedElementGuid" : { + "value" : "29a10ac3-da07-488a-b241-61c31a31529f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 1125 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "dc88bc75-128a-482f-af84-4ba86f5ed294" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "dc88bc75-128a-482f-af84-4ba86f5ed294" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "dc88bc75-128a-482f-af84-4ba86f5ed294" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode26", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4a5d003c-481c-4bc1-b1b7-6110dd31c839" + }, + "attachedElementGuid" : { + "value" : "29a10ac3-da07-488a-b241-61c31a31529f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -4, + "y" : 0, + "z" : 1170 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4a5d003c-481c-4bc1-b1b7-6110dd31c839" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4a5d003c-481c-4bc1-b1b7-6110dd31c839" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4a5d003c-481c-4bc1-b1b7-6110dd31c839" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode27", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fdb4686b-a568-4744-8970-eb8c70bb158d" + }, + "attachedElementGuid" : { + "value" : "29a10ac3-da07-488a-b241-61c31a31529f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2, + "y" : 2, + "z" : 1215 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "fdb4686b-a568-4744-8970-eb8c70bb158d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fdb4686b-a568-4744-8970-eb8c70bb158d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "fdb4686b-a568-4744-8970-eb8c70bb158d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode28", + "tags" : [ + + ], + "elementGuid" : { + "value" : "eda1e92e-73df-41b0-8039-291d609dd846" + }, + "attachedElementGuid" : { + "value" : "29a10ac3-da07-488a-b241-61c31a31529f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 6, + "y" : 4, + "z" : 1260 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "eda1e92e-73df-41b0-8039-291d609dd846" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "eda1e92e-73df-41b0-8039-291d609dd846" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "eda1e92e-73df-41b0-8039-291d609dd846" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode29", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b4ee7554-30ce-4752-a54a-39eefde7876f" + }, + "attachedElementGuid" : { + "value" : "29a10ac3-da07-488a-b241-61c31a31529f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 1305 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b4ee7554-30ce-4752-a54a-39eefde7876f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b4ee7554-30ce-4752-a54a-39eefde7876f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b4ee7554-30ce-4752-a54a-39eefde7876f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode30", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f1efe511-309a-4210-92c4-3a6a56ec7850" + }, + "attachedElementGuid" : { + "value" : "29a10ac3-da07-488a-b241-61c31a31529f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -4, + "y" : 0, + "z" : 1350 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f1efe511-309a-4210-92c4-3a6a56ec7850" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f1efe511-309a-4210-92c4-3a6a56ec7850" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f1efe511-309a-4210-92c4-3a6a56ec7850" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode31", + "tags" : [ + + ], + "elementGuid" : { + "value" : "685b06a1-a5c6-4c85-84c4-5852c79383ff" + }, + "attachedElementGuid" : { + "value" : "29a10ac3-da07-488a-b241-61c31a31529f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 2, + "y" : 0, + "z" : 1395 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "685b06a1-a5c6-4c85-84c4-5852c79383ff" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "685b06a1-a5c6-4c85-84c4-5852c79383ff" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "685b06a1-a5c6-4c85-84c4-5852c79383ff" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode32", + "tags" : [ + + ], + "elementGuid" : { + "value" : "21736cdf-1a00-4bda-a328-d952a30cebee" + }, + "attachedElementGuid" : { + "value" : "29a10ac3-da07-488a-b241-61c31a31529f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 10, + "y" : 0, + "z" : 1440 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "21736cdf-1a00-4bda-a328-d952a30cebee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "21736cdf-1a00-4bda-a328-d952a30cebee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "21736cdf-1a00-4bda-a328-d952a30cebee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode33", + "tags" : [ + + ], + "elementGuid" : { + "value" : "edee51f1-926c-4a48-92a5-b7d673fb9c34" + }, + "attachedElementGuid" : { + "value" : "29a10ac3-da07-488a-b241-61c31a31529f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 20, + "y" : 0, + "z" : 1485 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "edee51f1-926c-4a48-92a5-b7d673fb9c34" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "edee51f1-926c-4a48-92a5-b7d673fb9c34" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "edee51f1-926c-4a48-92a5-b7d673fb9c34" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 99.3301, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "947b5e06-bf90-43d0-815a-9d0bc78f38d1" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "947b5e06-bf90-43d0-815a-9d0bc78f38d1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "947b5e06-bf90-43d0-815a-9d0bc78f38d1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "947b5e06-bf90-43d0-815a-9d0bc78f38d1" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c97386a9-3a90-4020-9d08-c57973c3a76d" + }, + "attachedElementGuid" : { + "value" : "947b5e06-bf90-43d0-815a-9d0bc78f38d1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c97386a9-3a90-4020-9d08-c57973c3a76d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c97386a9-3a90-4020-9d08-c57973c3a76d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c97386a9-3a90-4020-9d08-c57973c3a76d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "c97386a9-3a90-4020-9d08-c57973c3a76d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 99.4951, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d70b0ee4-dbb7-41e3-8b1a-b4c2a65610c7" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d70b0ee4-dbb7-41e3-8b1a-b4c2a65610c7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "d70b0ee4-dbb7-41e3-8b1a-b4c2a65610c7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "d70b0ee4-dbb7-41e3-8b1a-b4c2a65610c7" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8b87c883-b165-4a50-b34b-4047b9cf06e4" + }, + "attachedElementGuid" : { + "value" : "d70b0ee4-dbb7-41e3-8b1a-b4c2a65610c7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8b87c883-b165-4a50-b34b-4047b9cf06e4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8b87c883-b165-4a50-b34b-4047b9cf06e4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8b87c883-b165-4a50-b34b-4047b9cf06e4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "8b87c883-b165-4a50-b34b-4047b9cf06e4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 99.3301, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "426a00ce-f1c8-4bd6-b2ee-558dc2cf417b" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "426a00ce-f1c8-4bd6-b2ee-558dc2cf417b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "426a00ce-f1c8-4bd6-b2ee-558dc2cf417b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "426a00ce-f1c8-4bd6-b2ee-558dc2cf417b" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f6e2c741-17f5-43b4-bb5c-b8195c77fa99" + }, + "attachedElementGuid" : { + "value" : "426a00ce-f1c8-4bd6-b2ee-558dc2cf417b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f6e2c741-17f5-43b4-bb5c-b8195c77fa99" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f6e2c741-17f5-43b4-bb5c-b8195c77fa99" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f6e2c741-17f5-43b4-bb5c-b8195c77fa99" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "f6e2c741-17f5-43b4-bb5c-b8195c77fa99" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 99.6601, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f555f262-6260-4ed8-a59a-c5d9848ac136" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f555f262-6260-4ed8-a59a-c5d9848ac136" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "f555f262-6260-4ed8-a59a-c5d9848ac136" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "f555f262-6260-4ed8-a59a-c5d9848ac136" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3318cc57-2abc-456a-81fd-49dd6ae0b33f" + }, + "attachedElementGuid" : { + "value" : "f555f262-6260-4ed8-a59a-c5d9848ac136" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3318cc57-2abc-456a-81fd-49dd6ae0b33f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3318cc57-2abc-456a-81fd-49dd6ae0b33f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3318cc57-2abc-456a-81fd-49dd6ae0b33f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "3318cc57-2abc-456a-81fd-49dd6ae0b33f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 99.8251, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bee1f07a-3137-4a93-bb07-738e44fbe139" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bee1f07a-3137-4a93-bb07-738e44fbe139" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "bee1f07a-3137-4a93-bb07-738e44fbe139" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "bee1f07a-3137-4a93-bb07-738e44fbe139" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8345f4b1-281f-49db-a78f-3175f6ddb908" + }, + "attachedElementGuid" : { + "value" : "bee1f07a-3137-4a93-bb07-738e44fbe139" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8345f4b1-281f-49db-a78f-3175f6ddb908" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8345f4b1-281f-49db-a78f-3175f6ddb908" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8345f4b1-281f-49db-a78f-3175f6ddb908" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "8345f4b1-281f-49db-a78f-3175f6ddb908" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 99.9901047, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cd1aa504-48dc-4bae-9784-9cc7a6521cb7" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "cd1aa504-48dc-4bae-9784-9cc7a6521cb7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "cd1aa504-48dc-4bae-9784-9cc7a6521cb7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "cd1aa504-48dc-4bae-9784-9cc7a6521cb7" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1fe91cda-31e0-4b2e-988e-123a573c5a9e" + }, + "attachedElementGuid" : { + "value" : "cd1aa504-48dc-4bae-9784-9cc7a6521cb7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "1fe91cda-31e0-4b2e-988e-123a573c5a9e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1fe91cda-31e0-4b2e-988e-123a573c5a9e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "1fe91cda-31e0-4b2e-988e-123a573c5a9e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "1fe91cda-31e0-4b2e-988e-123a573c5a9e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 100.155106, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "699dc019-cfc6-43e8-ae6c-fe9e1bcde9fa" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "699dc019-cfc6-43e8-ae6c-fe9e1bcde9fa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "699dc019-cfc6-43e8-ae6c-fe9e1bcde9fa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "699dc019-cfc6-43e8-ae6c-fe9e1bcde9fa" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b785d2b0-658a-4d69-a25d-489b1e701a3a" + }, + "attachedElementGuid" : { + "value" : "699dc019-cfc6-43e8-ae6c-fe9e1bcde9fa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b785d2b0-658a-4d69-a25d-489b1e701a3a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b785d2b0-658a-4d69-a25d-489b1e701a3a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b785d2b0-658a-4d69-a25d-489b1e701a3a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "b785d2b0-658a-4d69-a25d-489b1e701a3a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 100.320107, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c796306b-ac9c-48c2-8d40-d3846ea64b4c" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c796306b-ac9c-48c2-8d40-d3846ea64b4c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "c796306b-ac9c-48c2-8d40-d3846ea64b4c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "c796306b-ac9c-48c2-8d40-d3846ea64b4c" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0ca1f23e-d152-43d3-83cb-70b18c46ca06" + }, + "attachedElementGuid" : { + "value" : "c796306b-ac9c-48c2-8d40-d3846ea64b4c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0ca1f23e-d152-43d3-83cb-70b18c46ca06" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0ca1f23e-d152-43d3-83cb-70b18c46ca06" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0ca1f23e-d152-43d3-83cb-70b18c46ca06" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "0ca1f23e-d152-43d3-83cb-70b18c46ca06" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 100.485107, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7373cc9a-51aa-4972-9f11-ab990d37eda6" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7373cc9a-51aa-4972-9f11-ab990d37eda6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "7373cc9a-51aa-4972-9f11-ab990d37eda6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "7373cc9a-51aa-4972-9f11-ab990d37eda6" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5af6f771-e921-4786-bfaa-1d89a9f587f7" + }, + "attachedElementGuid" : { + "value" : "7373cc9a-51aa-4972-9f11-ab990d37eda6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5af6f771-e921-4786-bfaa-1d89a9f587f7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5af6f771-e921-4786-bfaa-1d89a9f587f7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5af6f771-e921-4786-bfaa-1d89a9f587f7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "5af6f771-e921-4786-bfaa-1d89a9f587f7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 100.6501, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "10cafed6-3b5a-4ad8-ba2d-2da464c6b619" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "10cafed6-3b5a-4ad8-ba2d-2da464c6b619" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "10cafed6-3b5a-4ad8-ba2d-2da464c6b619" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "10cafed6-3b5a-4ad8-ba2d-2da464c6b619" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "35f0c631-0c64-4d67-93c2-e81a6cf8d6d5" + }, + "attachedElementGuid" : { + "value" : "10cafed6-3b5a-4ad8-ba2d-2da464c6b619" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "35f0c631-0c64-4d67-93c2-e81a6cf8d6d5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "35f0c631-0c64-4d67-93c2-e81a6cf8d6d5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "35f0c631-0c64-4d67-93c2-e81a6cf8d6d5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "35f0c631-0c64-4d67-93c2-e81a6cf8d6d5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 100.8151, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c4a377f6-744d-460b-854a-6887460b4507" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c4a377f6-744d-460b-854a-6887460b4507" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "c4a377f6-744d-460b-854a-6887460b4507" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "c4a377f6-744d-460b-854a-6887460b4507" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d4d8cc72-c811-4b1e-871e-b82e14615a95" + }, + "attachedElementGuid" : { + "value" : "c4a377f6-744d-460b-854a-6887460b4507" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d4d8cc72-c811-4b1e-871e-b82e14615a95" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d4d8cc72-c811-4b1e-871e-b82e14615a95" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d4d8cc72-c811-4b1e-871e-b82e14615a95" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d4d8cc72-c811-4b1e-871e-b82e14615a95" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 100.9801, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "25e3c1e7-f6b6-41c4-a40e-196dccb10463" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "25e3c1e7-f6b6-41c4-a40e-196dccb10463" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "25e3c1e7-f6b6-41c4-a40e-196dccb10463" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "25e3c1e7-f6b6-41c4-a40e-196dccb10463" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "230479cd-a0a8-4c34-a8ec-d7a72a58dd1e" + }, + "attachedElementGuid" : { + "value" : "25e3c1e7-f6b6-41c4-a40e-196dccb10463" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "230479cd-a0a8-4c34-a8ec-d7a72a58dd1e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "230479cd-a0a8-4c34-a8ec-d7a72a58dd1e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "230479cd-a0a8-4c34-a8ec-d7a72a58dd1e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "230479cd-a0a8-4c34-a8ec-d7a72a58dd1e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 101.310104, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e266573f-8e3f-43db-9006-4cea8dfc2cb0" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e266573f-8e3f-43db-9006-4cea8dfc2cb0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "e266573f-8e3f-43db-9006-4cea8dfc2cb0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "e266573f-8e3f-43db-9006-4cea8dfc2cb0" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5182ac29-2148-4276-ab83-b611ec789e64" + }, + "attachedElementGuid" : { + "value" : "e266573f-8e3f-43db-9006-4cea8dfc2cb0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5182ac29-2148-4276-ab83-b611ec789e64" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5182ac29-2148-4276-ab83-b611ec789e64" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5182ac29-2148-4276-ab83-b611ec789e64" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "5182ac29-2148-4276-ab83-b611ec789e64" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 101.475105, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9c0e845d-5853-46da-b67d-7ce6a5266681" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9c0e845d-5853-46da-b67d-7ce6a5266681" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "9c0e845d-5853-46da-b67d-7ce6a5266681" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "9c0e845d-5853-46da-b67d-7ce6a5266681" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5b0bb1e9-f92f-4026-8d3d-96289517eb02" + }, + "attachedElementGuid" : { + "value" : "9c0e845d-5853-46da-b67d-7ce6a5266681" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5b0bb1e9-f92f-4026-8d3d-96289517eb02" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5b0bb1e9-f92f-4026-8d3d-96289517eb02" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5b0bb1e9-f92f-4026-8d3d-96289517eb02" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "5b0bb1e9-f92f-4026-8d3d-96289517eb02" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 101.640106, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4ed14b50-4e8c-4a35-8045-a9ee95438b6d" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4ed14b50-4e8c-4a35-8045-a9ee95438b6d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "4ed14b50-4e8c-4a35-8045-a9ee95438b6d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "4ed14b50-4e8c-4a35-8045-a9ee95438b6d" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1eb718f8-a2e2-4564-843d-d4480744ea3f" + }, + "attachedElementGuid" : { + "value" : "4ed14b50-4e8c-4a35-8045-a9ee95438b6d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "1eb718f8-a2e2-4564-843d-d4480744ea3f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1eb718f8-a2e2-4564-843d-d4480744ea3f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "1eb718f8-a2e2-4564-843d-d4480744ea3f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "1eb718f8-a2e2-4564-843d-d4480744ea3f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 101.805107, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "249459d2-92b0-4c45-a7af-c7d3d4f8900c" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "249459d2-92b0-4c45-a7af-c7d3d4f8900c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "249459d2-92b0-4c45-a7af-c7d3d4f8900c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "249459d2-92b0-4c45-a7af-c7d3d4f8900c" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b52daa19-fd65-497e-b8c9-f893d7b0e643" + }, + "attachedElementGuid" : { + "value" : "249459d2-92b0-4c45-a7af-c7d3d4f8900c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b52daa19-fd65-497e-b8c9-f893d7b0e643" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b52daa19-fd65-497e-b8c9-f893d7b0e643" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b52daa19-fd65-497e-b8c9-f893d7b0e643" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "b52daa19-fd65-497e-b8c9-f893d7b0e643" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 101.970108, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c2157d6b-a0b6-45d8-ab61-3d6f920a5c8e" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c2157d6b-a0b6-45d8-ab61-3d6f920a5c8e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "c2157d6b-a0b6-45d8-ab61-3d6f920a5c8e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "c2157d6b-a0b6-45d8-ab61-3d6f920a5c8e" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "761bbe10-2fd5-4a9f-9944-1c9d9f70b06a" + }, + "attachedElementGuid" : { + "value" : "c2157d6b-a0b6-45d8-ab61-3d6f920a5c8e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "761bbe10-2fd5-4a9f-9944-1c9d9f70b06a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "761bbe10-2fd5-4a9f-9944-1c9d9f70b06a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "761bbe10-2fd5-4a9f-9944-1c9d9f70b06a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "761bbe10-2fd5-4a9f-9944-1c9d9f70b06a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 101.970108, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0b6adb14-7709-4ef4-9a09-269c161bbdfb" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0b6adb14-7709-4ef4-9a09-269c161bbdfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "0b6adb14-7709-4ef4-9a09-269c161bbdfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "0b6adb14-7709-4ef4-9a09-269c161bbdfb" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7b8fee11-38d6-43e3-ba6f-8a74ec99ab96" + }, + "attachedElementGuid" : { + "value" : "0b6adb14-7709-4ef4-9a09-269c161bbdfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7b8fee11-38d6-43e3-ba6f-8a74ec99ab96" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7b8fee11-38d6-43e3-ba6f-8a74ec99ab96" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "7b8fee11-38d6-43e3-ba6f-8a74ec99ab96" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "7b8fee11-38d6-43e3-ba6f-8a74ec99ab96" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 102.135109, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ceabaf48-c684-4c0d-9c3c-9cd8cd6f645e" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ceabaf48-c684-4c0d-9c3c-9cd8cd6f645e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "ceabaf48-c684-4c0d-9c3c-9cd8cd6f645e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "ceabaf48-c684-4c0d-9c3c-9cd8cd6f645e" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "47ecca04-5962-48cd-aaaa-cdc940f7a75c" + }, + "attachedElementGuid" : { + "value" : "ceabaf48-c684-4c0d-9c3c-9cd8cd6f645e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "47ecca04-5962-48cd-aaaa-cdc940f7a75c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "47ecca04-5962-48cd-aaaa-cdc940f7a75c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "47ecca04-5962-48cd-aaaa-cdc940f7a75c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "47ecca04-5962-48cd-aaaa-cdc940f7a75c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Flick_BM,Assembly-CSharp", + "availableFlickDirections" : [ + + ], + "exactJudgeTime" : 100.320107, + "elementName" : "New Flick", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d1272326-00a7-4100-84e4-9fde3d1d402a" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d1272326-00a7-4100-84e4-9fde3d1d402a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "d1272326-00a7-4100-84e4-9fde3d1d402a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "d1272326-00a7-4100-84e4-9fde3d1d402a" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualFlick", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "60df5f12-ca9e-4cff-a13a-00d01cba0b00" + }, + "attachedElementGuid" : { + "value" : "d1272326-00a7-4100-84e4-9fde3d1d402a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : -15 + }, + "originalScale" : { + "x" : 1.7, + "y" : 1.7, + "z" : 1.7 + }, + "attachedElementGuid" : { + "value" : "60df5f12-ca9e-4cff-a13a-00d01cba0b00" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "60df5f12-ca9e-4cff-a13a-00d01cba0b00" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "60df5f12-ca9e-4cff-a13a-00d01cba0b00" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "60df5f12-ca9e-4cff-a13a-00d01cba0b00" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Flick_BM,Assembly-CSharp", + "availableFlickDirections" : [ + + ], + "exactJudgeTime" : 102.3001, + "elementName" : "New Flick", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e2c5f38c-9202-4843-a7dc-abc363e03e56" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e2c5f38c-9202-4843-a7dc-abc363e03e56" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "e2c5f38c-9202-4843-a7dc-abc363e03e56" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "e2c5f38c-9202-4843-a7dc-abc363e03e56" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualFlick", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6dd6afcd-107e-4b03-bf0d-347b5a0561f2" + }, + "attachedElementGuid" : { + "value" : "e2c5f38c-9202-4843-a7dc-abc363e03e56" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 15 + }, + "originalScale" : { + "x" : 1.7, + "y" : 1.7, + "z" : 1.7 + }, + "attachedElementGuid" : { + "value" : "6dd6afcd-107e-4b03-bf0d-347b5a0561f2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6dd6afcd-107e-4b03-bf0d-347b5a0561f2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6dd6afcd-107e-4b03-bf0d-347b5a0561f2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "6dd6afcd-107e-4b03-bf0d-347b5a0561f2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 102.3001, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ae7fe393-f367-41aa-8ec3-32d6e6c0c8df" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ae7fe393-f367-41aa-8ec3-32d6e6c0c8df" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "ae7fe393-f367-41aa-8ec3-32d6e6c0c8df" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "ae7fe393-f367-41aa-8ec3-32d6e6c0c8df" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "dab357de-7056-40d4-85c6-4144bcbde0b3" + }, + "attachedElementGuid" : { + "value" : "ae7fe393-f367-41aa-8ec3-32d6e6c0c8df" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "dab357de-7056-40d4-85c6-4144bcbde0b3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "dab357de-7056-40d4-85c6-4144bcbde0b3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "dab357de-7056-40d4-85c6-4144bcbde0b3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "dab357de-7056-40d4-85c6-4144bcbde0b3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 102.4651, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "dee0789d-1906-4e06-969b-007c2f735d3d" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "dee0789d-1906-4e06-969b-007c2f735d3d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "dee0789d-1906-4e06-969b-007c2f735d3d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "dee0789d-1906-4e06-969b-007c2f735d3d" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9085ded5-db11-422f-9473-8e7ecd5b9602" + }, + "attachedElementGuid" : { + "value" : "dee0789d-1906-4e06-969b-007c2f735d3d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9085ded5-db11-422f-9473-8e7ecd5b9602" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9085ded5-db11-422f-9473-8e7ecd5b9602" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "9085ded5-db11-422f-9473-8e7ecd5b9602" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "9085ded5-db11-422f-9473-8e7ecd5b9602" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 102.795105, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9a833b0e-ea91-45ca-80e0-637eb7174262" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9a833b0e-ea91-45ca-80e0-637eb7174262" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "9a833b0e-ea91-45ca-80e0-637eb7174262" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "9a833b0e-ea91-45ca-80e0-637eb7174262" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2cc2b490-5416-4430-b7d8-42e819fcfd16" + }, + "attachedElementGuid" : { + "value" : "9a833b0e-ea91-45ca-80e0-637eb7174262" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2cc2b490-5416-4430-b7d8-42e819fcfd16" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2cc2b490-5416-4430-b7d8-42e819fcfd16" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "2cc2b490-5416-4430-b7d8-42e819fcfd16" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "2cc2b490-5416-4430-b7d8-42e819fcfd16" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Hold_BM,Assembly-CSharp", + "holdEndTime" : 103.125107, + "exactJudgeTime" : 102.960106, + "elementName" : "New Hold", + "tags" : [ + + ], + "elementGuid" : { + "value" : "23830338-ca3e-452d-b223-671b88800b0e" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "23830338-ca3e-452d-b223-671b88800b0e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "23830338-ca3e-452d-b223-671b88800b0e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "23830338-ca3e-452d-b223-671b88800b0e" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisualHold_BM,Assembly-CSharp", + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualHold", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d66bef89-c151-4aa5-ba92-18699ec98465" + }, + "attachedElementGuid" : { + "value" : "23830338-ca3e-452d-b223-671b88800b0e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d66bef89-c151-4aa5-ba92-18699ec98465" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d66bef89-c151-4aa5-ba92-18699ec98465" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d66bef89-c151-4aa5-ba92-18699ec98465" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExtend_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.5 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteHoldingBreath_BM,Assembly-CSharp", + "effectTime" : 0.165000916 + } + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d66bef89-c151-4aa5-ba92-18699ec98465" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 102.630104, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bd5ffcce-a6d3-46f9-a7bd-f5a46eb940cc" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bd5ffcce-a6d3-46f9-a7bd-f5a46eb940cc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "bd5ffcce-a6d3-46f9-a7bd-f5a46eb940cc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "bd5ffcce-a6d3-46f9-a7bd-f5a46eb940cc" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "01d5ee47-a47a-4043-b79b-809155a83c33" + }, + "attachedElementGuid" : { + "value" : "bd5ffcce-a6d3-46f9-a7bd-f5a46eb940cc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "01d5ee47-a47a-4043-b79b-809155a83c33" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "01d5ee47-a47a-4043-b79b-809155a83c33" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "01d5ee47-a47a-4043-b79b-809155a83c33" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "01d5ee47-a47a-4043-b79b-809155a83c33" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 103.455109, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3ac52844-cd72-4fe0-ad8f-86b80475edf9" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3ac52844-cd72-4fe0-ad8f-86b80475edf9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "3ac52844-cd72-4fe0-ad8f-86b80475edf9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "3ac52844-cd72-4fe0-ad8f-86b80475edf9" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "caf81413-8afc-49f7-8bb7-978f4e6a18db" + }, + "attachedElementGuid" : { + "value" : "3ac52844-cd72-4fe0-ad8f-86b80475edf9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "caf81413-8afc-49f7-8bb7-978f4e6a18db" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "caf81413-8afc-49f7-8bb7-978f4e6a18db" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "caf81413-8afc-49f7-8bb7-978f4e6a18db" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "caf81413-8afc-49f7-8bb7-978f4e6a18db" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 103.62011, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "da5beb2a-d516-43e2-981a-d2edfc22da8c" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "da5beb2a-d516-43e2-981a-d2edfc22da8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "da5beb2a-d516-43e2-981a-d2edfc22da8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "da5beb2a-d516-43e2-981a-d2edfc22da8c" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cddc9087-0b07-4311-bed3-4a3e77801403" + }, + "attachedElementGuid" : { + "value" : "da5beb2a-d516-43e2-981a-d2edfc22da8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "cddc9087-0b07-4311-bed3-4a3e77801403" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "cddc9087-0b07-4311-bed3-4a3e77801403" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "cddc9087-0b07-4311-bed3-4a3e77801403" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "cddc9087-0b07-4311-bed3-4a3e77801403" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 103.78511, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ddc62e03-9d02-4e6d-92ed-4c78dbdee2b5" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ddc62e03-9d02-4e6d-92ed-4c78dbdee2b5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "ddc62e03-9d02-4e6d-92ed-4c78dbdee2b5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "ddc62e03-9d02-4e6d-92ed-4c78dbdee2b5" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "30587d5c-87cc-4cba-9adc-b74f74e2fb6e" + }, + "attachedElementGuid" : { + "value" : "ddc62e03-9d02-4e6d-92ed-4c78dbdee2b5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "30587d5c-87cc-4cba-9adc-b74f74e2fb6e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "30587d5c-87cc-4cba-9adc-b74f74e2fb6e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "30587d5c-87cc-4cba-9adc-b74f74e2fb6e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "30587d5c-87cc-4cba-9adc-b74f74e2fb6e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 103.9501, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d5ec0c37-da3a-4352-aa7b-1e75d4f6982d" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d5ec0c37-da3a-4352-aa7b-1e75d4f6982d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "d5ec0c37-da3a-4352-aa7b-1e75d4f6982d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "d5ec0c37-da3a-4352-aa7b-1e75d4f6982d" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2b323946-5a64-4eb0-9361-e21b51c47993" + }, + "attachedElementGuid" : { + "value" : "d5ec0c37-da3a-4352-aa7b-1e75d4f6982d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2b323946-5a64-4eb0-9361-e21b51c47993" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2b323946-5a64-4eb0-9361-e21b51c47993" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "2b323946-5a64-4eb0-9361-e21b51c47993" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "2b323946-5a64-4eb0-9361-e21b51c47993" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 104.115105, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "75efc394-b1cb-460c-8318-0dbcc2a6561e" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "75efc394-b1cb-460c-8318-0dbcc2a6561e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "75efc394-b1cb-460c-8318-0dbcc2a6561e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "75efc394-b1cb-460c-8318-0dbcc2a6561e" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "06246fc8-da30-41fe-95ef-c04533717bf2" + }, + "attachedElementGuid" : { + "value" : "75efc394-b1cb-460c-8318-0dbcc2a6561e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "06246fc8-da30-41fe-95ef-c04533717bf2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "06246fc8-da30-41fe-95ef-c04533717bf2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "06246fc8-da30-41fe-95ef-c04533717bf2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "06246fc8-da30-41fe-95ef-c04533717bf2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 104.197609, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2ca31497-7a0d-4828-b1cc-633d68bb4a43" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2ca31497-7a0d-4828-b1cc-633d68bb4a43" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "2ca31497-7a0d-4828-b1cc-633d68bb4a43" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "2ca31497-7a0d-4828-b1cc-633d68bb4a43" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a8e65f11-8eca-4c61-80b3-a80e22407861" + }, + "attachedElementGuid" : { + "value" : "2ca31497-7a0d-4828-b1cc-633d68bb4a43" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a8e65f11-8eca-4c61-80b3-a80e22407861" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a8e65f11-8eca-4c61-80b3-a80e22407861" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a8e65f11-8eca-4c61-80b3-a80e22407861" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "a8e65f11-8eca-4c61-80b3-a80e22407861" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 104.28019, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8e2222d9-2377-4e5b-8121-dcc59d62e1a0" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8e2222d9-2377-4e5b-8121-dcc59d62e1a0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "8e2222d9-2377-4e5b-8121-dcc59d62e1a0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "8e2222d9-2377-4e5b-8121-dcc59d62e1a0" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "70cbece7-fb37-4c6b-b9d2-e49c6906f6c2" + }, + "attachedElementGuid" : { + "value" : "8e2222d9-2377-4e5b-8121-dcc59d62e1a0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "70cbece7-fb37-4c6b-b9d2-e49c6906f6c2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "70cbece7-fb37-4c6b-b9d2-e49c6906f6c2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "70cbece7-fb37-4c6b-b9d2-e49c6906f6c2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "70cbece7-fb37-4c6b-b9d2-e49c6906f6c2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 104.6102, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0f096fac-ced2-4db1-bc68-0322bb17dff5" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0f096fac-ced2-4db1-bc68-0322bb17dff5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "0f096fac-ced2-4db1-bc68-0322bb17dff5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "0f096fac-ced2-4db1-bc68-0322bb17dff5" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9c0dbad1-0ee7-4c66-9d0b-ad48a0852d9f" + }, + "attachedElementGuid" : { + "value" : "0f096fac-ced2-4db1-bc68-0322bb17dff5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9c0dbad1-0ee7-4c66-9d0b-ad48a0852d9f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9c0dbad1-0ee7-4c66-9d0b-ad48a0852d9f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "9c0dbad1-0ee7-4c66-9d0b-ad48a0852d9f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "9c0dbad1-0ee7-4c66-9d0b-ad48a0852d9f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 104.940109, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2318e44a-0de7-4c28-9f4f-a4eac7e280c8" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2318e44a-0de7-4c28-9f4f-a4eac7e280c8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "2318e44a-0de7-4c28-9f4f-a4eac7e280c8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "2318e44a-0de7-4c28-9f4f-a4eac7e280c8" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "134d8509-7493-423c-a8ee-be8572715e0b" + }, + "attachedElementGuid" : { + "value" : "2318e44a-0de7-4c28-9f4f-a4eac7e280c8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "134d8509-7493-423c-a8ee-be8572715e0b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "134d8509-7493-423c-a8ee-be8572715e0b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "134d8509-7493-423c-a8ee-be8572715e0b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "134d8509-7493-423c-a8ee-be8572715e0b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 105.10511, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a05f6f7c-6234-4fd8-8a9c-7f88d50ab3a1" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a05f6f7c-6234-4fd8-8a9c-7f88d50ab3a1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "a05f6f7c-6234-4fd8-8a9c-7f88d50ab3a1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "a05f6f7c-6234-4fd8-8a9c-7f88d50ab3a1" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "10b26f1d-2c25-4707-8a3e-d0e39b274517" + }, + "attachedElementGuid" : { + "value" : "a05f6f7c-6234-4fd8-8a9c-7f88d50ab3a1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "10b26f1d-2c25-4707-8a3e-d0e39b274517" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "10b26f1d-2c25-4707-8a3e-d0e39b274517" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "10b26f1d-2c25-4707-8a3e-d0e39b274517" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "10b26f1d-2c25-4707-8a3e-d0e39b274517" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 105.270111, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "216482f5-2253-40fc-becf-4ff8a7031dda" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "216482f5-2253-40fc-becf-4ff8a7031dda" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "216482f5-2253-40fc-becf-4ff8a7031dda" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "216482f5-2253-40fc-becf-4ff8a7031dda" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "71679413-d781-4d18-a265-f1f6118ec2c2" + }, + "attachedElementGuid" : { + "value" : "216482f5-2253-40fc-becf-4ff8a7031dda" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "71679413-d781-4d18-a265-f1f6118ec2c2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "71679413-d781-4d18-a265-f1f6118ec2c2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "71679413-d781-4d18-a265-f1f6118ec2c2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "71679413-d781-4d18-a265-f1f6118ec2c2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 105.270111, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "04621c70-c3d5-4f30-b11b-a6bd5f08e7a0" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "04621c70-c3d5-4f30-b11b-a6bd5f08e7a0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "04621c70-c3d5-4f30-b11b-a6bd5f08e7a0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "04621c70-c3d5-4f30-b11b-a6bd5f08e7a0" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7e0af0ef-e54b-4f5c-9e2b-9650d5537607" + }, + "attachedElementGuid" : { + "value" : "04621c70-c3d5-4f30-b11b-a6bd5f08e7a0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7e0af0ef-e54b-4f5c-9e2b-9650d5537607" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7e0af0ef-e54b-4f5c-9e2b-9650d5537607" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "7e0af0ef-e54b-4f5c-9e2b-9650d5537607" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "7e0af0ef-e54b-4f5c-9e2b-9650d5537607" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 105.435112, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "141f8207-98c2-41f8-8b48-9a9ec2a78d7a" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "141f8207-98c2-41f8-8b48-9a9ec2a78d7a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "141f8207-98c2-41f8-8b48-9a9ec2a78d7a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "141f8207-98c2-41f8-8b48-9a9ec2a78d7a" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fb35d8bd-9dd7-48d8-b952-ba61c9032507" + }, + "attachedElementGuid" : { + "value" : "141f8207-98c2-41f8-8b48-9a9ec2a78d7a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "fb35d8bd-9dd7-48d8-b952-ba61c9032507" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fb35d8bd-9dd7-48d8-b952-ba61c9032507" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "fb35d8bd-9dd7-48d8-b952-ba61c9032507" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "fb35d8bd-9dd7-48d8-b952-ba61c9032507" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 105.765106, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "522f838e-ecf0-473b-ab8d-cc32f6f8a00e" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "522f838e-ecf0-473b-ab8d-cc32f6f8a00e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "522f838e-ecf0-473b-ab8d-cc32f6f8a00e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "522f838e-ecf0-473b-ab8d-cc32f6f8a00e" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "445693a3-b45d-497b-8b92-ec0b96092d9a" + }, + "attachedElementGuid" : { + "value" : "522f838e-ecf0-473b-ab8d-cc32f6f8a00e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "445693a3-b45d-497b-8b92-ec0b96092d9a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "445693a3-b45d-497b-8b92-ec0b96092d9a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "445693a3-b45d-497b-8b92-ec0b96092d9a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "445693a3-b45d-497b-8b92-ec0b96092d9a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 105.765106, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f9984f8e-e636-4884-adaa-97c6bf987133" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f9984f8e-e636-4884-adaa-97c6bf987133" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "f9984f8e-e636-4884-adaa-97c6bf987133" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "f9984f8e-e636-4884-adaa-97c6bf987133" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bab54b89-3488-4c8d-87ec-aebabf237f24" + }, + "attachedElementGuid" : { + "value" : "f9984f8e-e636-4884-adaa-97c6bf987133" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "bab54b89-3488-4c8d-87ec-aebabf237f24" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bab54b89-3488-4c8d-87ec-aebabf237f24" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "bab54b89-3488-4c8d-87ec-aebabf237f24" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "bab54b89-3488-4c8d-87ec-aebabf237f24" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 105.930107, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9cacf40d-553d-4b38-a08a-531d2618853e" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9cacf40d-553d-4b38-a08a-531d2618853e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "9cacf40d-553d-4b38-a08a-531d2618853e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "9cacf40d-553d-4b38-a08a-531d2618853e" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9b05d758-2437-404a-b784-a347a19b33c5" + }, + "attachedElementGuid" : { + "value" : "9cacf40d-553d-4b38-a08a-531d2618853e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9b05d758-2437-404a-b784-a347a19b33c5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9b05d758-2437-404a-b784-a347a19b33c5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "9b05d758-2437-404a-b784-a347a19b33c5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "9b05d758-2437-404a-b784-a347a19b33c5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Hold_BM,Assembly-CSharp", + "holdEndTime" : 107.580116, + "exactJudgeTime" : 107.250114, + "elementName" : "New Hold", + "tags" : [ + + ], + "elementGuid" : { + "value" : "33494372-b638-4b89-8ebe-b8f3d1b3d3da" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "33494372-b638-4b89-8ebe-b8f3d1b3d3da" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "33494372-b638-4b89-8ebe-b8f3d1b3d3da" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "33494372-b638-4b89-8ebe-b8f3d1b3d3da" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisualHold_BM,Assembly-CSharp", + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualHold", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6fd3ae80-562c-40b9-a1c7-f175b5367833" + }, + "attachedElementGuid" : { + "value" : "33494372-b638-4b89-8ebe-b8f3d1b3d3da" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6fd3ae80-562c-40b9-a1c7-f175b5367833" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6fd3ae80-562c-40b9-a1c7-f175b5367833" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6fd3ae80-562c-40b9-a1c7-f175b5367833" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExtend_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.5 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteHoldingBreath_BM,Assembly-CSharp", + "effectTime" : 0.330001831 + } + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "6fd3ae80-562c-40b9-a1c7-f175b5367833" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 107.415108, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "af17a01c-3bb7-4ec7-a5f1-6cf051577ab0" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "af17a01c-3bb7-4ec7-a5f1-6cf051577ab0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "af17a01c-3bb7-4ec7-a5f1-6cf051577ab0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "af17a01c-3bb7-4ec7-a5f1-6cf051577ab0" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0be7653b-c945-44d8-8d34-8671dffe707c" + }, + "attachedElementGuid" : { + "value" : "af17a01c-3bb7-4ec7-a5f1-6cf051577ab0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0be7653b-c945-44d8-8d34-8671dffe707c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0be7653b-c945-44d8-8d34-8671dffe707c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0be7653b-c945-44d8-8d34-8671dffe707c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "0be7653b-c945-44d8-8d34-8671dffe707c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 107.580109, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1771aad3-ee3c-4e3c-9b3c-60340832c24c" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1771aad3-ee3c-4e3c-9b3c-60340832c24c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "1771aad3-ee3c-4e3c-9b3c-60340832c24c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "1771aad3-ee3c-4e3c-9b3c-60340832c24c" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fa9b5e5e-a6f5-4151-a18e-e387dfcc94df" + }, + "attachedElementGuid" : { + "value" : "1771aad3-ee3c-4e3c-9b3c-60340832c24c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "fa9b5e5e-a6f5-4151-a18e-e387dfcc94df" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fa9b5e5e-a6f5-4151-a18e-e387dfcc94df" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "fa9b5e5e-a6f5-4151-a18e-e387dfcc94df" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "fa9b5e5e-a6f5-4151-a18e-e387dfcc94df" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 107.634727, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6af3f5f3-a525-423a-bf21-f37a10fccd13" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6af3f5f3-a525-423a-bf21-f37a10fccd13" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "6af3f5f3-a525-423a-bf21-f37a10fccd13" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "6af3f5f3-a525-423a-bf21-f37a10fccd13" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "800611ed-7681-4b26-bba4-9a5024c9c248" + }, + "attachedElementGuid" : { + "value" : "6af3f5f3-a525-423a-bf21-f37a10fccd13" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "800611ed-7681-4b26-bba4-9a5024c9c248" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "800611ed-7681-4b26-bba4-9a5024c9c248" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "800611ed-7681-4b26-bba4-9a5024c9c248" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "800611ed-7681-4b26-bba4-9a5024c9c248" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 107.68972, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3a8a3a7e-fcb0-4edd-89b4-6e17d1e78fe6" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3a8a3a7e-fcb0-4edd-89b4-6e17d1e78fe6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "3a8a3a7e-fcb0-4edd-89b4-6e17d1e78fe6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "3a8a3a7e-fcb0-4edd-89b4-6e17d1e78fe6" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "12880f1d-0a57-4966-8f4b-4b9d8eabddc0" + }, + "attachedElementGuid" : { + "value" : "3a8a3a7e-fcb0-4edd-89b4-6e17d1e78fe6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "12880f1d-0a57-4966-8f4b-4b9d8eabddc0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "12880f1d-0a57-4966-8f4b-4b9d8eabddc0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "12880f1d-0a57-4966-8f4b-4b9d8eabddc0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "12880f1d-0a57-4966-8f4b-4b9d8eabddc0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 107.91011, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c723c3b7-aa7c-46e5-92e5-94b81e31fcb8" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c723c3b7-aa7c-46e5-92e5-94b81e31fcb8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "c723c3b7-aa7c-46e5-92e5-94b81e31fcb8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "c723c3b7-aa7c-46e5-92e5-94b81e31fcb8" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0a4b7c35-4baa-4bd8-8f57-e1b5c1275279" + }, + "attachedElementGuid" : { + "value" : "c723c3b7-aa7c-46e5-92e5-94b81e31fcb8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0a4b7c35-4baa-4bd8-8f57-e1b5c1275279" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0a4b7c35-4baa-4bd8-8f57-e1b5c1275279" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0a4b7c35-4baa-4bd8-8f57-e1b5c1275279" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "0a4b7c35-4baa-4bd8-8f57-e1b5c1275279" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 108.075111, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "be883cbd-c462-470d-b3d4-2007b21718ed" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "be883cbd-c462-470d-b3d4-2007b21718ed" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "be883cbd-c462-470d-b3d4-2007b21718ed" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "be883cbd-c462-470d-b3d4-2007b21718ed" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "eb3995ed-fcab-4b50-bbdd-7cab3c4506a3" + }, + "attachedElementGuid" : { + "value" : "be883cbd-c462-470d-b3d4-2007b21718ed" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "eb3995ed-fcab-4b50-bbdd-7cab3c4506a3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "eb3995ed-fcab-4b50-bbdd-7cab3c4506a3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "eb3995ed-fcab-4b50-bbdd-7cab3c4506a3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "eb3995ed-fcab-4b50-bbdd-7cab3c4506a3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Flick_BM,Assembly-CSharp", + "availableFlickDirections" : [ + + ], + "exactJudgeTime" : 108.240112, + "elementName" : "New Flick", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1dc5dac4-3f93-4dc2-ba24-0b6537cd55ed" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1dc5dac4-3f93-4dc2-ba24-0b6537cd55ed" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "1dc5dac4-3f93-4dc2-ba24-0b6537cd55ed" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "1dc5dac4-3f93-4dc2-ba24-0b6537cd55ed" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualFlick", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8b7f752c-49d3-4ccd-b948-7a7dd3dcab75" + }, + "attachedElementGuid" : { + "value" : "1dc5dac4-3f93-4dc2-ba24-0b6537cd55ed" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : -16.2 + }, + "originalScale" : { + "x" : 1.7, + "y" : 1.7, + "z" : 1.7 + }, + "attachedElementGuid" : { + "value" : "8b7f752c-49d3-4ccd-b948-7a7dd3dcab75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8b7f752c-49d3-4ccd-b948-7a7dd3dcab75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8b7f752c-49d3-4ccd-b948-7a7dd3dcab75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "8b7f752c-49d3-4ccd-b948-7a7dd3dcab75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 108.240112, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cb76f57c-6a46-4b81-8aea-e319ead5a28b" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "cb76f57c-6a46-4b81-8aea-e319ead5a28b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "cb76f57c-6a46-4b81-8aea-e319ead5a28b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "cb76f57c-6a46-4b81-8aea-e319ead5a28b" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d7b23585-9dd8-4a88-8095-90b4d43d5a4e" + }, + "attachedElementGuid" : { + "value" : "cb76f57c-6a46-4b81-8aea-e319ead5a28b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d7b23585-9dd8-4a88-8095-90b4d43d5a4e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d7b23585-9dd8-4a88-8095-90b4d43d5a4e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d7b23585-9dd8-4a88-8095-90b4d43d5a4e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d7b23585-9dd8-4a88-8095-90b4d43d5a4e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 108.405113, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ab1cda3b-c8dc-492a-8587-3ec5ce3dfafd" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ab1cda3b-c8dc-492a-8587-3ec5ce3dfafd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "ab1cda3b-c8dc-492a-8587-3ec5ce3dfafd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "ab1cda3b-c8dc-492a-8587-3ec5ce3dfafd" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "770c7647-bc83-4d61-b58f-894a94347ff4" + }, + "attachedElementGuid" : { + "value" : "ab1cda3b-c8dc-492a-8587-3ec5ce3dfafd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "770c7647-bc83-4d61-b58f-894a94347ff4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "770c7647-bc83-4d61-b58f-894a94347ff4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "770c7647-bc83-4d61-b58f-894a94347ff4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "770c7647-bc83-4d61-b58f-894a94347ff4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 108.570114, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "032e0c2f-b91c-4ea2-8ca4-2fdfd6329c69" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "032e0c2f-b91c-4ea2-8ca4-2fdfd6329c69" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "032e0c2f-b91c-4ea2-8ca4-2fdfd6329c69" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "032e0c2f-b91c-4ea2-8ca4-2fdfd6329c69" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "da2b68e0-b93d-4e12-8388-f0d560d04599" + }, + "attachedElementGuid" : { + "value" : "032e0c2f-b91c-4ea2-8ca4-2fdfd6329c69" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "da2b68e0-b93d-4e12-8388-f0d560d04599" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "da2b68e0-b93d-4e12-8388-f0d560d04599" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "da2b68e0-b93d-4e12-8388-f0d560d04599" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "da2b68e0-b93d-4e12-8388-f0d560d04599" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 108.735115, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "11548a82-9e79-4d17-aace-b49b8f4e018a" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "11548a82-9e79-4d17-aace-b49b8f4e018a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "11548a82-9e79-4d17-aace-b49b8f4e018a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "11548a82-9e79-4d17-aace-b49b8f4e018a" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2c93cd71-1d57-4b2e-b263-fbbfbf73f61d" + }, + "attachedElementGuid" : { + "value" : "11548a82-9e79-4d17-aace-b49b8f4e018a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2c93cd71-1d57-4b2e-b263-fbbfbf73f61d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2c93cd71-1d57-4b2e-b263-fbbfbf73f61d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "2c93cd71-1d57-4b2e-b263-fbbfbf73f61d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "2c93cd71-1d57-4b2e-b263-fbbfbf73f61d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 108.900116, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "51ab71e3-84e4-409b-beaf-651b96abc0d6" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "51ab71e3-84e4-409b-beaf-651b96abc0d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "51ab71e3-84e4-409b-beaf-651b96abc0d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "51ab71e3-84e4-409b-beaf-651b96abc0d6" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "644010c1-7592-4fc7-b6a7-e4abb0ba74c7" + }, + "attachedElementGuid" : { + "value" : "51ab71e3-84e4-409b-beaf-651b96abc0d6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "644010c1-7592-4fc7-b6a7-e4abb0ba74c7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "644010c1-7592-4fc7-b6a7-e4abb0ba74c7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "644010c1-7592-4fc7-b6a7-e4abb0ba74c7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "644010c1-7592-4fc7-b6a7-e4abb0ba74c7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 109.065109, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "269920fe-5d4b-430b-b609-cabb24447b3d" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "269920fe-5d4b-430b-b609-cabb24447b3d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "269920fe-5d4b-430b-b609-cabb24447b3d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "269920fe-5d4b-430b-b609-cabb24447b3d" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "af6e89e8-6fe9-4c76-8abf-e543142b5512" + }, + "attachedElementGuid" : { + "value" : "269920fe-5d4b-430b-b609-cabb24447b3d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "af6e89e8-6fe9-4c76-8abf-e543142b5512" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "af6e89e8-6fe9-4c76-8abf-e543142b5512" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "af6e89e8-6fe9-4c76-8abf-e543142b5512" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "af6e89e8-6fe9-4c76-8abf-e543142b5512" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 109.23011, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "391d76cf-defd-4e42-95e9-9517855f8344" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "391d76cf-defd-4e42-95e9-9517855f8344" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "391d76cf-defd-4e42-95e9-9517855f8344" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "391d76cf-defd-4e42-95e9-9517855f8344" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1a1fa513-d6bf-4302-9acf-efe3d0b97829" + }, + "attachedElementGuid" : { + "value" : "391d76cf-defd-4e42-95e9-9517855f8344" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "1a1fa513-d6bf-4302-9acf-efe3d0b97829" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1a1fa513-d6bf-4302-9acf-efe3d0b97829" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "1a1fa513-d6bf-4302-9acf-efe3d0b97829" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "1a1fa513-d6bf-4302-9acf-efe3d0b97829" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 109.23011, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b829d811-e947-4fda-af35-f0a3e28c0ea6" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b829d811-e947-4fda-af35-f0a3e28c0ea6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "b829d811-e947-4fda-af35-f0a3e28c0ea6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "b829d811-e947-4fda-af35-f0a3e28c0ea6" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5ba0d89a-b9ee-4fd7-9b4d-81b12f870b91" + }, + "attachedElementGuid" : { + "value" : "b829d811-e947-4fda-af35-f0a3e28c0ea6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5ba0d89a-b9ee-4fd7-9b4d-81b12f870b91" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5ba0d89a-b9ee-4fd7-9b4d-81b12f870b91" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5ba0d89a-b9ee-4fd7-9b4d-81b12f870b91" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "5ba0d89a-b9ee-4fd7-9b4d-81b12f870b91" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 109.890114, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "103dcd54-5ab1-4e05-8043-a0efdd2eb2b8" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "103dcd54-5ab1-4e05-8043-a0efdd2eb2b8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "103dcd54-5ab1-4e05-8043-a0efdd2eb2b8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "103dcd54-5ab1-4e05-8043-a0efdd2eb2b8" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "670e67a2-d874-412e-aff8-358366923626" + }, + "attachedElementGuid" : { + "value" : "103dcd54-5ab1-4e05-8043-a0efdd2eb2b8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "670e67a2-d874-412e-aff8-358366923626" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "670e67a2-d874-412e-aff8-358366923626" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "670e67a2-d874-412e-aff8-358366923626" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "670e67a2-d874-412e-aff8-358366923626" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 109.890114, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "077e0e01-1c0b-486b-83e7-aff44dc18490" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "077e0e01-1c0b-486b-83e7-aff44dc18490" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "077e0e01-1c0b-486b-83e7-aff44dc18490" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "077e0e01-1c0b-486b-83e7-aff44dc18490" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4036909b-ec3f-4854-9601-6f5d613bdf25" + }, + "attachedElementGuid" : { + "value" : "077e0e01-1c0b-486b-83e7-aff44dc18490" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4036909b-ec3f-4854-9601-6f5d613bdf25" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4036909b-ec3f-4854-9601-6f5d613bdf25" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4036909b-ec3f-4854-9601-6f5d613bdf25" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "4036909b-ec3f-4854-9601-6f5d613bdf25" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 109.560112, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "826dc22c-aa92-4e07-afae-7aff99aa6625" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "826dc22c-aa92-4e07-afae-7aff99aa6625" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "826dc22c-aa92-4e07-afae-7aff99aa6625" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "826dc22c-aa92-4e07-afae-7aff99aa6625" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "87f38aae-39a9-4bba-b6a7-be729678bb7e" + }, + "attachedElementGuid" : { + "value" : "826dc22c-aa92-4e07-afae-7aff99aa6625" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "87f38aae-39a9-4bba-b6a7-be729678bb7e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "87f38aae-39a9-4bba-b6a7-be729678bb7e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "87f38aae-39a9-4bba-b6a7-be729678bb7e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "87f38aae-39a9-4bba-b6a7-be729678bb7e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 109.725113, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "028777e5-da80-4c9d-9033-0643f239e2b9" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "028777e5-da80-4c9d-9033-0643f239e2b9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "028777e5-da80-4c9d-9033-0643f239e2b9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "028777e5-da80-4c9d-9033-0643f239e2b9" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1c82bb2b-0f9d-47be-bacd-bd5970cfd0aa" + }, + "attachedElementGuid" : { + "value" : "028777e5-da80-4c9d-9033-0643f239e2b9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "1c82bb2b-0f9d-47be-bacd-bd5970cfd0aa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1c82bb2b-0f9d-47be-bacd-bd5970cfd0aa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "1c82bb2b-0f9d-47be-bacd-bd5970cfd0aa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "1c82bb2b-0f9d-47be-bacd-bd5970cfd0aa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 109.560112, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "68cf45fb-02be-415d-8c69-f39b5811b212" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "68cf45fb-02be-415d-8c69-f39b5811b212" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "68cf45fb-02be-415d-8c69-f39b5811b212" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "68cf45fb-02be-415d-8c69-f39b5811b212" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "082096ef-563d-472f-b04e-5b22e6e8971d" + }, + "attachedElementGuid" : { + "value" : "68cf45fb-02be-415d-8c69-f39b5811b212" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "082096ef-563d-472f-b04e-5b22e6e8971d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "082096ef-563d-472f-b04e-5b22e6e8971d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "082096ef-563d-472f-b04e-5b22e6e8971d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "082096ef-563d-472f-b04e-5b22e6e8971d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 110.055115, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c9536314-5aca-4d6c-a17a-403cefa9527f" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c9536314-5aca-4d6c-a17a-403cefa9527f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "c9536314-5aca-4d6c-a17a-403cefa9527f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "c9536314-5aca-4d6c-a17a-403cefa9527f" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b66c0d11-5d1d-4caf-9676-b8adb6d7714b" + }, + "attachedElementGuid" : { + "value" : "c9536314-5aca-4d6c-a17a-403cefa9527f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b66c0d11-5d1d-4caf-9676-b8adb6d7714b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b66c0d11-5d1d-4caf-9676-b8adb6d7714b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b66c0d11-5d1d-4caf-9676-b8adb6d7714b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "b66c0d11-5d1d-4caf-9676-b8adb6d7714b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Hold_BM,Assembly-CSharp", + "holdEndTime" : 110.720116, + "exactJudgeTime" : 110.220116, + "elementName" : "New Hold", + "tags" : [ + + ], + "elementGuid" : { + "value" : "edbb5210-e717-414c-961b-e4d2a466cd7d" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "edbb5210-e717-414c-961b-e4d2a466cd7d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "edbb5210-e717-414c-961b-e4d2a466cd7d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "edbb5210-e717-414c-961b-e4d2a466cd7d" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisualHold_BM,Assembly-CSharp", + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualHold", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "94ef83d5-8e9a-4631-b8c1-89e2052ea1fa" + }, + "attachedElementGuid" : { + "value" : "edbb5210-e717-414c-961b-e4d2a466cd7d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "94ef83d5-8e9a-4631-b8c1-89e2052ea1fa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "94ef83d5-8e9a-4631-b8c1-89e2052ea1fa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "94ef83d5-8e9a-4631-b8c1-89e2052ea1fa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExtend_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.5 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteHoldingBreath_BM,Assembly-CSharp", + "effectTime" : 0.5 + } + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "94ef83d5-8e9a-4631-b8c1-89e2052ea1fa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Flick_BM,Assembly-CSharp", + "availableFlickDirections" : [ + + ], + "exactJudgeTime" : 110.220116, + "elementName" : "New Flick", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6e28d5a0-e3c0-4ec0-8147-1c8147c2fdc5" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6e28d5a0-e3c0-4ec0-8147-1c8147c2fdc5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "6e28d5a0-e3c0-4ec0-8147-1c8147c2fdc5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "6e28d5a0-e3c0-4ec0-8147-1c8147c2fdc5" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualFlick", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c62eacf0-63cc-4200-8d9e-6fb4ee7eaccb" + }, + "attachedElementGuid" : { + "value" : "6e28d5a0-e3c0-4ec0-8147-1c8147c2fdc5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : -30.5 + }, + "originalScale" : { + "x" : 1.7, + "y" : 1.7, + "z" : 1.7 + }, + "attachedElementGuid" : { + "value" : "c62eacf0-63cc-4200-8d9e-6fb4ee7eaccb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c62eacf0-63cc-4200-8d9e-6fb4ee7eaccb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c62eacf0-63cc-4200-8d9e-6fb4ee7eaccb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "c62eacf0-63cc-4200-8d9e-6fb4ee7eaccb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 110.550117, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4aaa0361-a3a8-433c-9254-5dad190256dd" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4aaa0361-a3a8-433c-9254-5dad190256dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "4aaa0361-a3a8-433c-9254-5dad190256dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "4aaa0361-a3a8-433c-9254-5dad190256dd" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "36ccd8f0-a19a-46f9-ae59-e56b0e261641" + }, + "attachedElementGuid" : { + "value" : "4aaa0361-a3a8-433c-9254-5dad190256dd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "36ccd8f0-a19a-46f9-ae59-e56b0e261641" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "36ccd8f0-a19a-46f9-ae59-e56b0e261641" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "36ccd8f0-a19a-46f9-ae59-e56b0e261641" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "36ccd8f0-a19a-46f9-ae59-e56b0e261641" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 110.715111, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "15bb6980-1204-4ac1-bc63-a0ac7dc54381" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "15bb6980-1204-4ac1-bc63-a0ac7dc54381" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "15bb6980-1204-4ac1-bc63-a0ac7dc54381" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "15bb6980-1204-4ac1-bc63-a0ac7dc54381" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fcc371e5-f495-4ce3-9c35-e32298e73aec" + }, + "attachedElementGuid" : { + "value" : "15bb6980-1204-4ac1-bc63-a0ac7dc54381" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "fcc371e5-f495-4ce3-9c35-e32298e73aec" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fcc371e5-f495-4ce3-9c35-e32298e73aec" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "fcc371e5-f495-4ce3-9c35-e32298e73aec" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "fcc371e5-f495-4ce3-9c35-e32298e73aec" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 111.210114, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d78e1f20-d09f-46db-95cb-0ca07ca064c5" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d78e1f20-d09f-46db-95cb-0ca07ca064c5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "d78e1f20-d09f-46db-95cb-0ca07ca064c5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "d78e1f20-d09f-46db-95cb-0ca07ca064c5" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4bfde755-1b44-4841-a183-8c1c44806464" + }, + "attachedElementGuid" : { + "value" : "d78e1f20-d09f-46db-95cb-0ca07ca064c5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4bfde755-1b44-4841-a183-8c1c44806464" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4bfde755-1b44-4841-a183-8c1c44806464" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4bfde755-1b44-4841-a183-8c1c44806464" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "4bfde755-1b44-4841-a183-8c1c44806464" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 111.210114, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a05c0473-ad52-47d5-8eaf-1fa66bbf6652" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a05c0473-ad52-47d5-8eaf-1fa66bbf6652" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "a05c0473-ad52-47d5-8eaf-1fa66bbf6652" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "a05c0473-ad52-47d5-8eaf-1fa66bbf6652" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a3cecc75-cc21-4bf1-80c6-baf2c663a919" + }, + "attachedElementGuid" : { + "value" : "a05c0473-ad52-47d5-8eaf-1fa66bbf6652" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a3cecc75-cc21-4bf1-80c6-baf2c663a919" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a3cecc75-cc21-4bf1-80c6-baf2c663a919" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a3cecc75-cc21-4bf1-80c6-baf2c663a919" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "a3cecc75-cc21-4bf1-80c6-baf2c663a919" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 111.375114, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cbc7f520-8922-4c0c-a5ca-452a824c90f3" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "cbc7f520-8922-4c0c-a5ca-452a824c90f3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "cbc7f520-8922-4c0c-a5ca-452a824c90f3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "cbc7f520-8922-4c0c-a5ca-452a824c90f3" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0d1374e0-75a0-4dc8-9389-5df393001f51" + }, + "attachedElementGuid" : { + "value" : "cbc7f520-8922-4c0c-a5ca-452a824c90f3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0d1374e0-75a0-4dc8-9389-5df393001f51" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0d1374e0-75a0-4dc8-9389-5df393001f51" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0d1374e0-75a0-4dc8-9389-5df393001f51" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "0d1374e0-75a0-4dc8-9389-5df393001f51" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Hold_BM,Assembly-CSharp", + "holdEndTime" : 112.040115, + "exactJudgeTime" : 111.540115, + "elementName" : "New Hold", + "tags" : [ + + ], + "elementGuid" : { + "value" : "87e51d02-b450-49b8-b565-de3663329931" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "87e51d02-b450-49b8-b565-de3663329931" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "87e51d02-b450-49b8-b565-de3663329931" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "87e51d02-b450-49b8-b565-de3663329931" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisualHold_BM,Assembly-CSharp", + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualHold", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cabf9d62-034c-4a5d-a214-5382849cecf2" + }, + "attachedElementGuid" : { + "value" : "87e51d02-b450-49b8-b565-de3663329931" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "cabf9d62-034c-4a5d-a214-5382849cecf2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "cabf9d62-034c-4a5d-a214-5382849cecf2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "cabf9d62-034c-4a5d-a214-5382849cecf2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExtend_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.5 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteHoldingBreath_BM,Assembly-CSharp", + "effectTime" : 0.5 + } + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "cabf9d62-034c-4a5d-a214-5382849cecf2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 111.705116, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "21fd1af4-82d2-47b8-963c-74595074dc1a" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "21fd1af4-82d2-47b8-963c-74595074dc1a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "21fd1af4-82d2-47b8-963c-74595074dc1a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "21fd1af4-82d2-47b8-963c-74595074dc1a" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d9d71c31-a1a9-4bbb-b8df-1860ae372f9f" + }, + "attachedElementGuid" : { + "value" : "21fd1af4-82d2-47b8-963c-74595074dc1a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d9d71c31-a1a9-4bbb-b8df-1860ae372f9f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d9d71c31-a1a9-4bbb-b8df-1860ae372f9f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d9d71c31-a1a9-4bbb-b8df-1860ae372f9f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d9d71c31-a1a9-4bbb-b8df-1860ae372f9f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 111.787613, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1a246591-021b-461d-a6a2-430c80e7a9e0" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1a246591-021b-461d-a6a2-430c80e7a9e0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "1a246591-021b-461d-a6a2-430c80e7a9e0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "1a246591-021b-461d-a6a2-430c80e7a9e0" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d116450a-f1c8-4570-a70b-d035bb7ddd28" + }, + "attachedElementGuid" : { + "value" : "1a246591-021b-461d-a6a2-430c80e7a9e0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d116450a-f1c8-4570-a70b-d035bb7ddd28" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d116450a-f1c8-4570-a70b-d035bb7ddd28" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d116450a-f1c8-4570-a70b-d035bb7ddd28" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d116450a-f1c8-4570-a70b-d035bb7ddd28" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 111.870117, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a4f53cc5-6e8d-4495-a96f-f90f9c1fc5e7" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a4f53cc5-6e8d-4495-a96f-f90f9c1fc5e7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "a4f53cc5-6e8d-4495-a96f-f90f9c1fc5e7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "a4f53cc5-6e8d-4495-a96f-f90f9c1fc5e7" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b25ee9bb-9063-4767-8001-177276a7b427" + }, + "attachedElementGuid" : { + "value" : "a4f53cc5-6e8d-4495-a96f-f90f9c1fc5e7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b25ee9bb-9063-4767-8001-177276a7b427" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b25ee9bb-9063-4767-8001-177276a7b427" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b25ee9bb-9063-4767-8001-177276a7b427" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "b25ee9bb-9063-4767-8001-177276a7b427" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 112.035118, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "04338645-f155-4b13-bd4e-fe1363f7d282" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "04338645-f155-4b13-bd4e-fe1363f7d282" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "04338645-f155-4b13-bd4e-fe1363f7d282" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "04338645-f155-4b13-bd4e-fe1363f7d282" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "da23d754-e15c-46ed-8cad-d71f8d6a019d" + }, + "attachedElementGuid" : { + "value" : "04338645-f155-4b13-bd4e-fe1363f7d282" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "da23d754-e15c-46ed-8cad-d71f8d6a019d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "da23d754-e15c-46ed-8cad-d71f8d6a019d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "da23d754-e15c-46ed-8cad-d71f8d6a019d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "da23d754-e15c-46ed-8cad-d71f8d6a019d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Flick_BM,Assembly-CSharp", + "availableFlickDirections" : [ + + ], + "exactJudgeTime" : 112.200119, + "elementName" : "New Flick", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c69c0c0b-48da-4f0c-88bd-2ca52998df63" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c69c0c0b-48da-4f0c-88bd-2ca52998df63" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "c69c0c0b-48da-4f0c-88bd-2ca52998df63" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "c69c0c0b-48da-4f0c-88bd-2ca52998df63" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualFlick", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "92db79a4-090e-4b35-b6ac-cacf0f581896" + }, + "attachedElementGuid" : { + "value" : "c69c0c0b-48da-4f0c-88bd-2ca52998df63" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 14 + }, + "originalScale" : { + "x" : 1.7, + "y" : 1.7, + "z" : 1.7 + }, + "attachedElementGuid" : { + "value" : "92db79a4-090e-4b35-b6ac-cacf0f581896" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "92db79a4-090e-4b35-b6ac-cacf0f581896" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "92db79a4-090e-4b35-b6ac-cacf0f581896" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "92db79a4-090e-4b35-b6ac-cacf0f581896" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 112.200119, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1e9653c5-68df-453d-936e-ab4de1c81879" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1e9653c5-68df-453d-936e-ab4de1c81879" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "1e9653c5-68df-453d-936e-ab4de1c81879" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "1e9653c5-68df-453d-936e-ab4de1c81879" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "30bc684c-669e-417f-a0f8-decd625e7f52" + }, + "attachedElementGuid" : { + "value" : "1e9653c5-68df-453d-936e-ab4de1c81879" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "30bc684c-669e-417f-a0f8-decd625e7f52" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "30bc684c-669e-417f-a0f8-decd625e7f52" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "30bc684c-669e-417f-a0f8-decd625e7f52" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "30bc684c-669e-417f-a0f8-decd625e7f52" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 112.530113, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "df735e60-cf86-4e8a-bf57-3b573bbbc83d" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "df735e60-cf86-4e8a-bf57-3b573bbbc83d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "df735e60-cf86-4e8a-bf57-3b573bbbc83d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "df735e60-cf86-4e8a-bf57-3b573bbbc83d" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2cc2b1a1-2bc8-446a-be65-7fbf8c0cfb11" + }, + "attachedElementGuid" : { + "value" : "df735e60-cf86-4e8a-bf57-3b573bbbc83d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2cc2b1a1-2bc8-446a-be65-7fbf8c0cfb11" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2cc2b1a1-2bc8-446a-be65-7fbf8c0cfb11" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "2cc2b1a1-2bc8-446a-be65-7fbf8c0cfb11" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "2cc2b1a1-2bc8-446a-be65-7fbf8c0cfb11" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 112.530113, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9353913f-9c53-4baf-b562-000866495487" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9353913f-9c53-4baf-b562-000866495487" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "9353913f-9c53-4baf-b562-000866495487" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "9353913f-9c53-4baf-b562-000866495487" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c445e85c-54c4-4719-b171-90a8e80d70cc" + }, + "attachedElementGuid" : { + "value" : "9353913f-9c53-4baf-b562-000866495487" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c445e85c-54c4-4719-b171-90a8e80d70cc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c445e85c-54c4-4719-b171-90a8e80d70cc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c445e85c-54c4-4719-b171-90a8e80d70cc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "c445e85c-54c4-4719-b171-90a8e80d70cc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 112.860115, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d8a3a4a8-499b-469f-9310-f8cd5234a3a6" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d8a3a4a8-499b-469f-9310-f8cd5234a3a6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "d8a3a4a8-499b-469f-9310-f8cd5234a3a6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "d8a3a4a8-499b-469f-9310-f8cd5234a3a6" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2d5bab36-b795-47d4-8089-0f026ceac5df" + }, + "attachedElementGuid" : { + "value" : "d8a3a4a8-499b-469f-9310-f8cd5234a3a6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2d5bab36-b795-47d4-8089-0f026ceac5df" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2d5bab36-b795-47d4-8089-0f026ceac5df" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "2d5bab36-b795-47d4-8089-0f026ceac5df" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "2d5bab36-b795-47d4-8089-0f026ceac5df" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 112.860115, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7e0a7ca6-2ecd-4093-a030-7c886d996b1d" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7e0a7ca6-2ecd-4093-a030-7c886d996b1d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "7e0a7ca6-2ecd-4093-a030-7c886d996b1d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "7e0a7ca6-2ecd-4093-a030-7c886d996b1d" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "014694c1-fc36-4be1-bfe2-6a9ffaf5446b" + }, + "attachedElementGuid" : { + "value" : "7e0a7ca6-2ecd-4093-a030-7c886d996b1d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "014694c1-fc36-4be1-bfe2-6a9ffaf5446b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "014694c1-fc36-4be1-bfe2-6a9ffaf5446b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "014694c1-fc36-4be1-bfe2-6a9ffaf5446b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "014694c1-fc36-4be1-bfe2-6a9ffaf5446b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 113.025116, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "708a3bca-e855-42dd-a8ba-0993907e6fc1" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "708a3bca-e855-42dd-a8ba-0993907e6fc1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "708a3bca-e855-42dd-a8ba-0993907e6fc1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "708a3bca-e855-42dd-a8ba-0993907e6fc1" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9345d06d-f88f-4834-a8f7-e1b8c78be783" + }, + "attachedElementGuid" : { + "value" : "708a3bca-e855-42dd-a8ba-0993907e6fc1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9345d06d-f88f-4834-a8f7-e1b8c78be783" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9345d06d-f88f-4834-a8f7-e1b8c78be783" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "9345d06d-f88f-4834-a8f7-e1b8c78be783" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "9345d06d-f88f-4834-a8f7-e1b8c78be783" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 113.0794, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4b44b324-9483-4513-95e0-103b9e94005c" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4b44b324-9483-4513-95e0-103b9e94005c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "4b44b324-9483-4513-95e0-103b9e94005c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "4b44b324-9483-4513-95e0-103b9e94005c" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "691ce635-e1e0-4725-bae1-efe4790b5b9c" + }, + "attachedElementGuid" : { + "value" : "4b44b324-9483-4513-95e0-103b9e94005c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "691ce635-e1e0-4725-bae1-efe4790b5b9c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "691ce635-e1e0-4725-bae1-efe4790b5b9c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "691ce635-e1e0-4725-bae1-efe4790b5b9c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "691ce635-e1e0-4725-bae1-efe4790b5b9c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 113.134392, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "91e1fc21-9ea1-4d95-9f2e-ae84744190f5" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "91e1fc21-9ea1-4d95-9f2e-ae84744190f5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "91e1fc21-9ea1-4d95-9f2e-ae84744190f5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "91e1fc21-9ea1-4d95-9f2e-ae84744190f5" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f04e2590-ae93-421e-859b-c5c9ecb18703" + }, + "attachedElementGuid" : { + "value" : "91e1fc21-9ea1-4d95-9f2e-ae84744190f5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f04e2590-ae93-421e-859b-c5c9ecb18703" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f04e2590-ae93-421e-859b-c5c9ecb18703" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f04e2590-ae93-421e-859b-c5c9ecb18703" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "f04e2590-ae93-421e-859b-c5c9ecb18703" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 113.189392, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "34c2af62-caa9-4fab-8741-10db5f694b5c" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "34c2af62-caa9-4fab-8741-10db5f694b5c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "34c2af62-caa9-4fab-8741-10db5f694b5c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "34c2af62-caa9-4fab-8741-10db5f694b5c" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bf8fe16f-a742-476c-9a62-1fff7b22f94d" + }, + "attachedElementGuid" : { + "value" : "34c2af62-caa9-4fab-8741-10db5f694b5c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "bf8fe16f-a742-476c-9a62-1fff7b22f94d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bf8fe16f-a742-476c-9a62-1fff7b22f94d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "bf8fe16f-a742-476c-9a62-1fff7b22f94d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "bf8fe16f-a742-476c-9a62-1fff7b22f94d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 113.190117, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "344da59e-7632-4a15-a980-ea112cd87d3c" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "344da59e-7632-4a15-a980-ea112cd87d3c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "344da59e-7632-4a15-a980-ea112cd87d3c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "344da59e-7632-4a15-a980-ea112cd87d3c" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "664f5d12-3004-4dbe-839a-a6f2cffc7d12" + }, + "attachedElementGuid" : { + "value" : "344da59e-7632-4a15-a980-ea112cd87d3c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "664f5d12-3004-4dbe-839a-a6f2cffc7d12" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "664f5d12-3004-4dbe-839a-a6f2cffc7d12" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "664f5d12-3004-4dbe-839a-a6f2cffc7d12" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "664f5d12-3004-4dbe-839a-a6f2cffc7d12" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 113.355118, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ba809d5b-0f3f-4d34-b76e-702c7bd0016e" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ba809d5b-0f3f-4d34-b76e-702c7bd0016e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "ba809d5b-0f3f-4d34-b76e-702c7bd0016e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "ba809d5b-0f3f-4d34-b76e-702c7bd0016e" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "396e8e28-cd45-475f-bf69-9bf87283b6b1" + }, + "attachedElementGuid" : { + "value" : "ba809d5b-0f3f-4d34-b76e-702c7bd0016e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "396e8e28-cd45-475f-bf69-9bf87283b6b1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "396e8e28-cd45-475f-bf69-9bf87283b6b1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "396e8e28-cd45-475f-bf69-9bf87283b6b1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "396e8e28-cd45-475f-bf69-9bf87283b6b1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 113.520119, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4dfea965-0ea2-4b21-80d3-910773659e61" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4dfea965-0ea2-4b21-80d3-910773659e61" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "4dfea965-0ea2-4b21-80d3-910773659e61" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "4dfea965-0ea2-4b21-80d3-910773659e61" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "11a407d4-83ac-4108-b4ff-7827817a5b64" + }, + "attachedElementGuid" : { + "value" : "4dfea965-0ea2-4b21-80d3-910773659e61" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "11a407d4-83ac-4108-b4ff-7827817a5b64" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "11a407d4-83ac-4108-b4ff-7827817a5b64" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "11a407d4-83ac-4108-b4ff-7827817a5b64" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "11a407d4-83ac-4108-b4ff-7827817a5b64" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 113.68512, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0dfc8d74-b66a-4515-ad51-e0da6fb38ba3" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0dfc8d74-b66a-4515-ad51-e0da6fb38ba3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "0dfc8d74-b66a-4515-ad51-e0da6fb38ba3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "0dfc8d74-b66a-4515-ad51-e0da6fb38ba3" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "956da420-76fe-42aa-90ea-0d56c474f400" + }, + "attachedElementGuid" : { + "value" : "0dfc8d74-b66a-4515-ad51-e0da6fb38ba3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "956da420-76fe-42aa-90ea-0d56c474f400" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "956da420-76fe-42aa-90ea-0d56c474f400" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "956da420-76fe-42aa-90ea-0d56c474f400" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "956da420-76fe-42aa-90ea-0d56c474f400" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 113.767616, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "def4856d-31a7-486f-b6ce-eee5bfe61a03" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "def4856d-31a7-486f-b6ce-eee5bfe61a03" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "def4856d-31a7-486f-b6ce-eee5bfe61a03" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "def4856d-31a7-486f-b6ce-eee5bfe61a03" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "53257d16-0d18-47c5-a607-90dafde45356" + }, + "attachedElementGuid" : { + "value" : "def4856d-31a7-486f-b6ce-eee5bfe61a03" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "53257d16-0d18-47c5-a607-90dafde45356" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "53257d16-0d18-47c5-a607-90dafde45356" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "53257d16-0d18-47c5-a607-90dafde45356" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "53257d16-0d18-47c5-a607-90dafde45356" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 113.850121, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4b0f0113-d697-451c-8adb-aeb4b21ac3b1" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4b0f0113-d697-451c-8adb-aeb4b21ac3b1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "4b0f0113-d697-451c-8adb-aeb4b21ac3b1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "4b0f0113-d697-451c-8adb-aeb4b21ac3b1" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "46e13889-32eb-4593-b8d0-4a921a575a37" + }, + "attachedElementGuid" : { + "value" : "4b0f0113-d697-451c-8adb-aeb4b21ac3b1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "46e13889-32eb-4593-b8d0-4a921a575a37" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "46e13889-32eb-4593-b8d0-4a921a575a37" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "46e13889-32eb-4593-b8d0-4a921a575a37" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "46e13889-32eb-4593-b8d0-4a921a575a37" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 113.932617, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "86d00a3c-0e26-4320-8b82-519efbc9ff56" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "86d00a3c-0e26-4320-8b82-519efbc9ff56" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "86d00a3c-0e26-4320-8b82-519efbc9ff56" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "86d00a3c-0e26-4320-8b82-519efbc9ff56" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f1f8926e-3f2d-44ea-b7ac-39e211a51711" + }, + "attachedElementGuid" : { + "value" : "86d00a3c-0e26-4320-8b82-519efbc9ff56" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f1f8926e-3f2d-44ea-b7ac-39e211a51711" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f1f8926e-3f2d-44ea-b7ac-39e211a51711" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f1f8926e-3f2d-44ea-b7ac-39e211a51711" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "f1f8926e-3f2d-44ea-b7ac-39e211a51711" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 114.015, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d32f2297-1d65-42ea-a865-c61fa18acd20" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d32f2297-1d65-42ea-a865-c61fa18acd20" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "d32f2297-1d65-42ea-a865-c61fa18acd20" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "d32f2297-1d65-42ea-a865-c61fa18acd20" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c670f338-6189-4c9f-98a2-dc373a880e62" + }, + "attachedElementGuid" : { + "value" : "d32f2297-1d65-42ea-a865-c61fa18acd20" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c670f338-6189-4c9f-98a2-dc373a880e62" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c670f338-6189-4c9f-98a2-dc373a880e62" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c670f338-6189-4c9f-98a2-dc373a880e62" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "c670f338-6189-4c9f-98a2-dc373a880e62" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 114.097618, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "92e5a3cb-ade1-46be-a1af-66cc420f071c" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "92e5a3cb-ade1-46be-a1af-66cc420f071c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "92e5a3cb-ade1-46be-a1af-66cc420f071c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "92e5a3cb-ade1-46be-a1af-66cc420f071c" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "620ed4cd-4d67-459f-b138-76147d22f425" + }, + "attachedElementGuid" : { + "value" : "92e5a3cb-ade1-46be-a1af-66cc420f071c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "620ed4cd-4d67-459f-b138-76147d22f425" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "620ed4cd-4d67-459f-b138-76147d22f425" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "620ed4cd-4d67-459f-b138-76147d22f425" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "620ed4cd-4d67-459f-b138-76147d22f425" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Flick_BM,Assembly-CSharp", + "availableFlickDirections" : [ + + ], + "exactJudgeTime" : 114.18, + "elementName" : "New Flick", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cf7af97b-80da-463e-9d89-4382482f4224" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "cf7af97b-80da-463e-9d89-4382482f4224" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "cf7af97b-80da-463e-9d89-4382482f4224" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "cf7af97b-80da-463e-9d89-4382482f4224" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualFlick", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b12b7201-d1e9-4511-9c82-ddd0e18789e5" + }, + "attachedElementGuid" : { + "value" : "cf7af97b-80da-463e-9d89-4382482f4224" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : -30 + }, + "originalScale" : { + "x" : 1.7, + "y" : 1.7, + "z" : 1.7 + }, + "attachedElementGuid" : { + "value" : "b12b7201-d1e9-4511-9c82-ddd0e18789e5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b12b7201-d1e9-4511-9c82-ddd0e18789e5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b12b7201-d1e9-4511-9c82-ddd0e18789e5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "b12b7201-d1e9-4511-9c82-ddd0e18789e5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 114.345116, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f0166a25-dfda-482a-bc27-1fa0efe6cf32" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f0166a25-dfda-482a-bc27-1fa0efe6cf32" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "f0166a25-dfda-482a-bc27-1fa0efe6cf32" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "f0166a25-dfda-482a-bc27-1fa0efe6cf32" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9cdd9c85-6283-4f08-a333-310e1e90bb02" + }, + "attachedElementGuid" : { + "value" : "f0166a25-dfda-482a-bc27-1fa0efe6cf32" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9cdd9c85-6283-4f08-a333-310e1e90bb02" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9cdd9c85-6283-4f08-a333-310e1e90bb02" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "9cdd9c85-6283-4f08-a333-310e1e90bb02" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "9cdd9c85-6283-4f08-a333-310e1e90bb02" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 114.840118, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c470719f-5f5f-499b-9358-4341db23e80d" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c470719f-5f5f-499b-9358-4341db23e80d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "c470719f-5f5f-499b-9358-4341db23e80d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "c470719f-5f5f-499b-9358-4341db23e80d" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a54bf945-df3c-4c2c-bcf2-908aadc45399" + }, + "attachedElementGuid" : { + "value" : "c470719f-5f5f-499b-9358-4341db23e80d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a54bf945-df3c-4c2c-bcf2-908aadc45399" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a54bf945-df3c-4c2c-bcf2-908aadc45399" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a54bf945-df3c-4c2c-bcf2-908aadc45399" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "a54bf945-df3c-4c2c-bcf2-908aadc45399" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 115.169, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "be71d01a-24c8-4a95-9e1d-f884f41bfefc" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "be71d01a-24c8-4a95-9e1d-f884f41bfefc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "be71d01a-24c8-4a95-9e1d-f884f41bfefc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "be71d01a-24c8-4a95-9e1d-f884f41bfefc" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4c379446-abd2-4032-8858-cd9379511bd1" + }, + "attachedElementGuid" : { + "value" : "be71d01a-24c8-4a95-9e1d-f884f41bfefc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4c379446-abd2-4032-8858-cd9379511bd1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4c379446-abd2-4032-8858-cd9379511bd1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4c379446-abd2-4032-8858-cd9379511bd1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "4c379446-abd2-4032-8858-cd9379511bd1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 115.500122, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "dbd1b1b3-3ab9-4cd7-90c5-0efa0cb1ce57" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "dbd1b1b3-3ab9-4cd7-90c5-0efa0cb1ce57" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "dbd1b1b3-3ab9-4cd7-90c5-0efa0cb1ce57" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "dbd1b1b3-3ab9-4cd7-90c5-0efa0cb1ce57" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "98bf739e-e06f-4d45-bcf0-0481f82fe848" + }, + "attachedElementGuid" : { + "value" : "dbd1b1b3-3ab9-4cd7-90c5-0efa0cb1ce57" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "98bf739e-e06f-4d45-bcf0-0481f82fe848" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "98bf739e-e06f-4d45-bcf0-0481f82fe848" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "98bf739e-e06f-4d45-bcf0-0481f82fe848" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "98bf739e-e06f-4d45-bcf0-0481f82fe848" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 115.500122, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3dcab7bf-68b0-4565-9bf2-7e35f9c0274c" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3dcab7bf-68b0-4565-9bf2-7e35f9c0274c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "3dcab7bf-68b0-4565-9bf2-7e35f9c0274c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "3dcab7bf-68b0-4565-9bf2-7e35f9c0274c" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "319c8faf-1284-4ce2-a8a8-877f2c728e42" + }, + "attachedElementGuid" : { + "value" : "3dcab7bf-68b0-4565-9bf2-7e35f9c0274c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "319c8faf-1284-4ce2-a8a8-877f2c728e42" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "319c8faf-1284-4ce2-a8a8-877f2c728e42" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "319c8faf-1284-4ce2-a8a8-877f2c728e42" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "319c8faf-1284-4ce2-a8a8-877f2c728e42" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 115.830116, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3c03edaa-4134-45d6-891e-fcc772302e18" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3c03edaa-4134-45d6-891e-fcc772302e18" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "3c03edaa-4134-45d6-891e-fcc772302e18" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "3c03edaa-4134-45d6-891e-fcc772302e18" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f85dca11-bf3c-44d4-9169-3c12eebeab9e" + }, + "attachedElementGuid" : { + "value" : "3c03edaa-4134-45d6-891e-fcc772302e18" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f85dca11-bf3c-44d4-9169-3c12eebeab9e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f85dca11-bf3c-44d4-9169-3c12eebeab9e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f85dca11-bf3c-44d4-9169-3c12eebeab9e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "f85dca11-bf3c-44d4-9169-3c12eebeab9e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 115.830116, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1a200ddc-ac4d-458b-92a7-3f899795675d" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1a200ddc-ac4d-458b-92a7-3f899795675d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "1a200ddc-ac4d-458b-92a7-3f899795675d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "1a200ddc-ac4d-458b-92a7-3f899795675d" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3f3519fc-7e83-42b8-923a-df9128a7d687" + }, + "attachedElementGuid" : { + "value" : "1a200ddc-ac4d-458b-92a7-3f899795675d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3f3519fc-7e83-42b8-923a-df9128a7d687" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3f3519fc-7e83-42b8-923a-df9128a7d687" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3f3519fc-7e83-42b8-923a-df9128a7d687" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "3f3519fc-7e83-42b8-923a-df9128a7d687" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 116.160118, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "839c048d-c443-4933-a660-72a90dc57481" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "839c048d-c443-4933-a660-72a90dc57481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "839c048d-c443-4933-a660-72a90dc57481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "839c048d-c443-4933-a660-72a90dc57481" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5dd10952-342d-4b36-b20c-6c9f9c1fca6e" + }, + "attachedElementGuid" : { + "value" : "839c048d-c443-4933-a660-72a90dc57481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5dd10952-342d-4b36-b20c-6c9f9c1fca6e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5dd10952-342d-4b36-b20c-6c9f9c1fca6e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5dd10952-342d-4b36-b20c-6c9f9c1fca6e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "5dd10952-342d-4b36-b20c-6c9f9c1fca6e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Flick_BM,Assembly-CSharp", + "availableFlickDirections" : [ + + ], + "exactJudgeTime" : 116.160118, + "elementName" : "New Flick", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ee8ca4cc-8a5d-4cb5-b29c-0e154c71ea23" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ee8ca4cc-8a5d-4cb5-b29c-0e154c71ea23" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "ee8ca4cc-8a5d-4cb5-b29c-0e154c71ea23" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "ee8ca4cc-8a5d-4cb5-b29c-0e154c71ea23" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualFlick", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "97dd22e5-ce13-457e-a71c-6b90bc3e4b90" + }, + "attachedElementGuid" : { + "value" : "ee8ca4cc-8a5d-4cb5-b29c-0e154c71ea23" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : -45.9 + }, + "originalScale" : { + "x" : 1.7, + "y" : 1.7, + "z" : 1.7 + }, + "attachedElementGuid" : { + "value" : "97dd22e5-ce13-457e-a71c-6b90bc3e4b90" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "97dd22e5-ce13-457e-a71c-6b90bc3e4b90" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "97dd22e5-ce13-457e-a71c-6b90bc3e4b90" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "97dd22e5-ce13-457e-a71c-6b90bc3e4b90" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 116.49012, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "20fa3512-79e9-4967-83df-d701d3c30c3b" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "20fa3512-79e9-4967-83df-d701d3c30c3b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "20fa3512-79e9-4967-83df-d701d3c30c3b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "20fa3512-79e9-4967-83df-d701d3c30c3b" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "55f829c9-acfe-4af5-a8bd-86c9a789ecd5" + }, + "attachedElementGuid" : { + "value" : "20fa3512-79e9-4967-83df-d701d3c30c3b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "55f829c9-acfe-4af5-a8bd-86c9a789ecd5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "55f829c9-acfe-4af5-a8bd-86c9a789ecd5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "55f829c9-acfe-4af5-a8bd-86c9a789ecd5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "55f829c9-acfe-4af5-a8bd-86c9a789ecd5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 116.49012, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d5162748-0696-44c4-b480-13a428f25576" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d5162748-0696-44c4-b480-13a428f25576" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "d5162748-0696-44c4-b480-13a428f25576" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "d5162748-0696-44c4-b480-13a428f25576" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9b8f7c14-2592-483b-bb4a-a1a31eac2bff" + }, + "attachedElementGuid" : { + "value" : "d5162748-0696-44c4-b480-13a428f25576" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9b8f7c14-2592-483b-bb4a-a1a31eac2bff" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9b8f7c14-2592-483b-bb4a-a1a31eac2bff" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "9b8f7c14-2592-483b-bb4a-a1a31eac2bff" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "9b8f7c14-2592-483b-bb4a-a1a31eac2bff" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 116.820122, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1dca2aeb-2853-4ac5-8ed8-e6955ce1ad02" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1dca2aeb-2853-4ac5-8ed8-e6955ce1ad02" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "1dca2aeb-2853-4ac5-8ed8-e6955ce1ad02" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "1dca2aeb-2853-4ac5-8ed8-e6955ce1ad02" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7c05683f-d10e-48e3-988d-14b55624e212" + }, + "attachedElementGuid" : { + "value" : "1dca2aeb-2853-4ac5-8ed8-e6955ce1ad02" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7c05683f-d10e-48e3-988d-14b55624e212" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7c05683f-d10e-48e3-988d-14b55624e212" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "7c05683f-d10e-48e3-988d-14b55624e212" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "7c05683f-d10e-48e3-988d-14b55624e212" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 116.820122, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2f319f0c-f290-4ba4-9f5d-88712f967a61" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2f319f0c-f290-4ba4-9f5d-88712f967a61" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "2f319f0c-f290-4ba4-9f5d-88712f967a61" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "2f319f0c-f290-4ba4-9f5d-88712f967a61" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "23723812-3ba2-4601-ae27-d3ba66bcfe96" + }, + "attachedElementGuid" : { + "value" : "2f319f0c-f290-4ba4-9f5d-88712f967a61" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "23723812-3ba2-4601-ae27-d3ba66bcfe96" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "23723812-3ba2-4601-ae27-d3ba66bcfe96" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "23723812-3ba2-4601-ae27-d3ba66bcfe96" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "23723812-3ba2-4601-ae27-d3ba66bcfe96" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 117.150124, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7be7535b-68b3-4ac9-b6b8-a821a77c24e5" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7be7535b-68b3-4ac9-b6b8-a821a77c24e5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "7be7535b-68b3-4ac9-b6b8-a821a77c24e5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "7be7535b-68b3-4ac9-b6b8-a821a77c24e5" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "23f3babb-89d9-4496-a870-abcbde99bddb" + }, + "attachedElementGuid" : { + "value" : "7be7535b-68b3-4ac9-b6b8-a821a77c24e5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "23f3babb-89d9-4496-a870-abcbde99bddb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "23f3babb-89d9-4496-a870-abcbde99bddb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "23f3babb-89d9-4496-a870-abcbde99bddb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "23f3babb-89d9-4496-a870-abcbde99bddb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 117.150124, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f91849b8-116a-47eb-bfe1-4e9c16b0a80f" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f91849b8-116a-47eb-bfe1-4e9c16b0a80f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "f91849b8-116a-47eb-bfe1-4e9c16b0a80f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "f91849b8-116a-47eb-bfe1-4e9c16b0a80f" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7277b4f8-1787-45c3-a46d-e1a775ebd846" + }, + "attachedElementGuid" : { + "value" : "f91849b8-116a-47eb-bfe1-4e9c16b0a80f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7277b4f8-1787-45c3-a46d-e1a775ebd846" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7277b4f8-1787-45c3-a46d-e1a775ebd846" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "7277b4f8-1787-45c3-a46d-e1a775ebd846" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "7277b4f8-1787-45c3-a46d-e1a775ebd846" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 117.315125, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7051187f-0899-4176-89fa-1de70b5032d7" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7051187f-0899-4176-89fa-1de70b5032d7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "7051187f-0899-4176-89fa-1de70b5032d7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "7051187f-0899-4176-89fa-1de70b5032d7" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a1e5e051-ce50-4fa6-a848-d4d1b7c940bb" + }, + "attachedElementGuid" : { + "value" : "7051187f-0899-4176-89fa-1de70b5032d7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a1e5e051-ce50-4fa6-a848-d4d1b7c940bb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a1e5e051-ce50-4fa6-a848-d4d1b7c940bb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a1e5e051-ce50-4fa6-a848-d4d1b7c940bb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "a1e5e051-ce50-4fa6-a848-d4d1b7c940bb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 117.480118, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5c8ce213-570b-4aaf-bca3-784f6f72e92b" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5c8ce213-570b-4aaf-bca3-784f6f72e92b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "5c8ce213-570b-4aaf-bca3-784f6f72e92b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "5c8ce213-570b-4aaf-bca3-784f6f72e92b" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "48ac3f78-7145-47d3-8635-d9a1e6b39054" + }, + "attachedElementGuid" : { + "value" : "5c8ce213-570b-4aaf-bca3-784f6f72e92b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "48ac3f78-7145-47d3-8635-d9a1e6b39054" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "48ac3f78-7145-47d3-8635-d9a1e6b39054" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "48ac3f78-7145-47d3-8635-d9a1e6b39054" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "48ac3f78-7145-47d3-8635-d9a1e6b39054" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 117.645119, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9621d162-5e80-40e0-9779-c76aa81af115" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9621d162-5e80-40e0-9779-c76aa81af115" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "9621d162-5e80-40e0-9779-c76aa81af115" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "9621d162-5e80-40e0-9779-c76aa81af115" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "523178d9-1dc2-4edc-9d65-fe54745d48a9" + }, + "attachedElementGuid" : { + "value" : "9621d162-5e80-40e0-9779-c76aa81af115" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "523178d9-1dc2-4edc-9d65-fe54745d48a9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "523178d9-1dc2-4edc-9d65-fe54745d48a9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "523178d9-1dc2-4edc-9d65-fe54745d48a9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "523178d9-1dc2-4edc-9d65-fe54745d48a9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 117.81012, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0356bd5f-0499-4114-bcde-de4d46924f01" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0356bd5f-0499-4114-bcde-de4d46924f01" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "0356bd5f-0499-4114-bcde-de4d46924f01" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "0356bd5f-0499-4114-bcde-de4d46924f01" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "83436f68-8f7b-41c5-b25c-f0933e585051" + }, + "attachedElementGuid" : { + "value" : "0356bd5f-0499-4114-bcde-de4d46924f01" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "83436f68-8f7b-41c5-b25c-f0933e585051" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "83436f68-8f7b-41c5-b25c-f0933e585051" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "83436f68-8f7b-41c5-b25c-f0933e585051" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "83436f68-8f7b-41c5-b25c-f0933e585051" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 117.975121, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "350ca9c4-bba9-476f-89d5-83f954f2275d" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "350ca9c4-bba9-476f-89d5-83f954f2275d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "350ca9c4-bba9-476f-89d5-83f954f2275d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "350ca9c4-bba9-476f-89d5-83f954f2275d" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4070ca61-8294-4b5c-ba57-88fde18c646f" + }, + "attachedElementGuid" : { + "value" : "350ca9c4-bba9-476f-89d5-83f954f2275d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4070ca61-8294-4b5c-ba57-88fde18c646f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4070ca61-8294-4b5c-ba57-88fde18c646f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4070ca61-8294-4b5c-ba57-88fde18c646f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "4070ca61-8294-4b5c-ba57-88fde18c646f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Flick_BM,Assembly-CSharp", + "availableFlickDirections" : [ + + ], + "exactJudgeTime" : 118.140121, + "elementName" : "New Flick", + "tags" : [ + + ], + "elementGuid" : { + "value" : "119caa6c-b4c4-49cc-99f1-ddae94ddbd70" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "119caa6c-b4c4-49cc-99f1-ddae94ddbd70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "119caa6c-b4c4-49cc-99f1-ddae94ddbd70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "119caa6c-b4c4-49cc-99f1-ddae94ddbd70" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualFlick", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c92fb610-b87a-45cc-b18a-8babb99d4cb6" + }, + "attachedElementGuid" : { + "value" : "119caa6c-b4c4-49cc-99f1-ddae94ddbd70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 45 + }, + "originalScale" : { + "x" : 1.7, + "y" : 1.7, + "z" : 1.5 + }, + "attachedElementGuid" : { + "value" : "c92fb610-b87a-45cc-b18a-8babb99d4cb6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c92fb610-b87a-45cc-b18a-8babb99d4cb6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c92fb610-b87a-45cc-b18a-8babb99d4cb6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "c92fb610-b87a-45cc-b18a-8babb99d4cb6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 118.140121, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "521b8cea-d5d5-44e8-9572-873f13c93f8c" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "521b8cea-d5d5-44e8-9572-873f13c93f8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "521b8cea-d5d5-44e8-9572-873f13c93f8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "521b8cea-d5d5-44e8-9572-873f13c93f8c" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6a581393-0469-4854-ad75-74cbdb457376" + }, + "attachedElementGuid" : { + "value" : "521b8cea-d5d5-44e8-9572-873f13c93f8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6a581393-0469-4854-ad75-74cbdb457376" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6a581393-0469-4854-ad75-74cbdb457376" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6a581393-0469-4854-ad75-74cbdb457376" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "6a581393-0469-4854-ad75-74cbdb457376" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 118.250626, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5002fb10-9078-49cc-97e2-29fe99cf4624" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5002fb10-9078-49cc-97e2-29fe99cf4624" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "5002fb10-9078-49cc-97e2-29fe99cf4624" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "5002fb10-9078-49cc-97e2-29fe99cf4624" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c9057dc6-0b01-4160-8cb2-faa2ae81f91d" + }, + "attachedElementGuid" : { + "value" : "5002fb10-9078-49cc-97e2-29fe99cf4624" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c9057dc6-0b01-4160-8cb2-faa2ae81f91d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c9057dc6-0b01-4160-8cb2-faa2ae81f91d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c9057dc6-0b01-4160-8cb2-faa2ae81f91d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "c9057dc6-0b01-4160-8cb2-faa2ae81f91d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 118.360634, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e74bc620-da59-4f4a-a13c-5e8d5b41c064" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e74bc620-da59-4f4a-a13c-5e8d5b41c064" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "e74bc620-da59-4f4a-a13c-5e8d5b41c064" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "e74bc620-da59-4f4a-a13c-5e8d5b41c064" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d44734ec-b667-4dee-944c-3d83c39b8b9d" + }, + "attachedElementGuid" : { + "value" : "e74bc620-da59-4f4a-a13c-5e8d5b41c064" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d44734ec-b667-4dee-944c-3d83c39b8b9d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d44734ec-b667-4dee-944c-3d83c39b8b9d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d44734ec-b667-4dee-944c-3d83c39b8b9d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d44734ec-b667-4dee-944c-3d83c39b8b9d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 118.470123, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "49b14e7d-f172-46a9-a2ad-fd3fd2ca05e8" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "49b14e7d-f172-46a9-a2ad-fd3fd2ca05e8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "49b14e7d-f172-46a9-a2ad-fd3fd2ca05e8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "49b14e7d-f172-46a9-a2ad-fd3fd2ca05e8" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8031e282-606c-432f-8004-4701e52acca1" + }, + "attachedElementGuid" : { + "value" : "49b14e7d-f172-46a9-a2ad-fd3fd2ca05e8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8031e282-606c-432f-8004-4701e52acca1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8031e282-606c-432f-8004-4701e52acca1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8031e282-606c-432f-8004-4701e52acca1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "8031e282-606c-432f-8004-4701e52acca1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 118.580643, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0b36f756-b5c9-472a-a065-9d7dcb3fe18c" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0b36f756-b5c9-472a-a065-9d7dcb3fe18c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "0b36f756-b5c9-472a-a065-9d7dcb3fe18c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "0b36f756-b5c9-472a-a065-9d7dcb3fe18c" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2a472c80-12b4-42b3-9418-09a0b65245fe" + }, + "attachedElementGuid" : { + "value" : "0b36f756-b5c9-472a-a065-9d7dcb3fe18c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2a472c80-12b4-42b3-9418-09a0b65245fe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2a472c80-12b4-42b3-9418-09a0b65245fe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "2a472c80-12b4-42b3-9418-09a0b65245fe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "2a472c80-12b4-42b3-9418-09a0b65245fe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 118.690643, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d84f1266-ab6a-4d41-90e9-1fa301ea2826" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d84f1266-ab6a-4d41-90e9-1fa301ea2826" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "d84f1266-ab6a-4d41-90e9-1fa301ea2826" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "d84f1266-ab6a-4d41-90e9-1fa301ea2826" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e08b1940-5b5b-461f-8e6e-dddc6e88e59c" + }, + "attachedElementGuid" : { + "value" : "d84f1266-ab6a-4d41-90e9-1fa301ea2826" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e08b1940-5b5b-461f-8e6e-dddc6e88e59c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e08b1940-5b5b-461f-8e6e-dddc6e88e59c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e08b1940-5b5b-461f-8e6e-dddc6e88e59c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "e08b1940-5b5b-461f-8e6e-dddc6e88e59c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 118.800644, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f2156319-bb2a-43ac-b41d-c13ae92f531d" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f2156319-bb2a-43ac-b41d-c13ae92f531d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "f2156319-bb2a-43ac-b41d-c13ae92f531d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "f2156319-bb2a-43ac-b41d-c13ae92f531d" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "26b87efd-0fe8-4f98-be22-cb141e9994f9" + }, + "attachedElementGuid" : { + "value" : "f2156319-bb2a-43ac-b41d-c13ae92f531d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "26b87efd-0fe8-4f98-be22-cb141e9994f9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "26b87efd-0fe8-4f98-be22-cb141e9994f9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "26b87efd-0fe8-4f98-be22-cb141e9994f9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "26b87efd-0fe8-4f98-be22-cb141e9994f9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 118.965126, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d9db9b2a-64d5-49c1-a2bb-34a704f315ec" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d9db9b2a-64d5-49c1-a2bb-34a704f315ec" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "d9db9b2a-64d5-49c1-a2bb-34a704f315ec" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "d9db9b2a-64d5-49c1-a2bb-34a704f315ec" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a78f5b36-edd9-4789-9722-57a4b9c2c82e" + }, + "attachedElementGuid" : { + "value" : "d9db9b2a-64d5-49c1-a2bb-34a704f315ec" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a78f5b36-edd9-4789-9722-57a4b9c2c82e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a78f5b36-edd9-4789-9722-57a4b9c2c82e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a78f5b36-edd9-4789-9722-57a4b9c2c82e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "a78f5b36-edd9-4789-9722-57a4b9c2c82e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 119.130119, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9ff4dcd2-2015-4dbf-82ae-fe56e741337d" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9ff4dcd2-2015-4dbf-82ae-fe56e741337d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "9ff4dcd2-2015-4dbf-82ae-fe56e741337d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "9ff4dcd2-2015-4dbf-82ae-fe56e741337d" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9e469789-9885-4025-8516-e66c76f6746b" + }, + "attachedElementGuid" : { + "value" : "9ff4dcd2-2015-4dbf-82ae-fe56e741337d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9e469789-9885-4025-8516-e66c76f6746b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9e469789-9885-4025-8516-e66c76f6746b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "9e469789-9885-4025-8516-e66c76f6746b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "9e469789-9885-4025-8516-e66c76f6746b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 119.130119, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b5677e2c-8db2-4016-a3ee-95e6e4245953" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b5677e2c-8db2-4016-a3ee-95e6e4245953" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "b5677e2c-8db2-4016-a3ee-95e6e4245953" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "b5677e2c-8db2-4016-a3ee-95e6e4245953" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "03956234-e75f-40c1-99cc-492092f77127" + }, + "attachedElementGuid" : { + "value" : "b5677e2c-8db2-4016-a3ee-95e6e4245953" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "03956234-e75f-40c1-99cc-492092f77127" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "03956234-e75f-40c1-99cc-492092f77127" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "03956234-e75f-40c1-99cc-492092f77127" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "03956234-e75f-40c1-99cc-492092f77127" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 119.29512, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a9695dc6-4ed0-4a68-8496-e466d3044d08" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a9695dc6-4ed0-4a68-8496-e466d3044d08" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "a9695dc6-4ed0-4a68-8496-e466d3044d08" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "a9695dc6-4ed0-4a68-8496-e466d3044d08" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "022fc702-2bdd-4849-96be-968f6d5d039e" + }, + "attachedElementGuid" : { + "value" : "a9695dc6-4ed0-4a68-8496-e466d3044d08" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "022fc702-2bdd-4849-96be-968f6d5d039e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "022fc702-2bdd-4849-96be-968f6d5d039e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "022fc702-2bdd-4849-96be-968f6d5d039e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "022fc702-2bdd-4849-96be-968f6d5d039e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Hold_BM,Assembly-CSharp", + "holdEndTime" : 120.120125, + "exactJudgeTime" : 119.460121, + "elementName" : "New Hold", + "tags" : [ + + ], + "elementGuid" : { + "value" : "177fdf9b-56cd-45e3-985e-efd1eaca079a" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "177fdf9b-56cd-45e3-985e-efd1eaca079a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "177fdf9b-56cd-45e3-985e-efd1eaca079a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "177fdf9b-56cd-45e3-985e-efd1eaca079a" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisualHold_BM,Assembly-CSharp", + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualHold", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "beb81a13-5eef-466f-a47b-f97fb4485ec3" + }, + "attachedElementGuid" : { + "value" : "177fdf9b-56cd-45e3-985e-efd1eaca079a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "beb81a13-5eef-466f-a47b-f97fb4485ec3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "beb81a13-5eef-466f-a47b-f97fb4485ec3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "beb81a13-5eef-466f-a47b-f97fb4485ec3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExtend_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.5 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteHoldingBreath_BM,Assembly-CSharp", + "effectTime" : 0.660003662 + } + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "beb81a13-5eef-466f-a47b-f97fb4485ec3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 119.625122, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "225c15a0-a8fc-4de5-98c5-057150629053" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "225c15a0-a8fc-4de5-98c5-057150629053" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "225c15a0-a8fc-4de5-98c5-057150629053" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "225c15a0-a8fc-4de5-98c5-057150629053" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6b062ceb-3c7c-480e-bff3-ef7b00d2e87f" + }, + "attachedElementGuid" : { + "value" : "225c15a0-a8fc-4de5-98c5-057150629053" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6b062ceb-3c7c-480e-bff3-ef7b00d2e87f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6b062ceb-3c7c-480e-bff3-ef7b00d2e87f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6b062ceb-3c7c-480e-bff3-ef7b00d2e87f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "6b062ceb-3c7c-480e-bff3-ef7b00d2e87f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 119.707626, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c2cf5f9d-3a37-4e68-af6f-7f78a80461db" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c2cf5f9d-3a37-4e68-af6f-7f78a80461db" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "c2cf5f9d-3a37-4e68-af6f-7f78a80461db" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "c2cf5f9d-3a37-4e68-af6f-7f78a80461db" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "099ba95b-88ce-4902-a333-566d23fdb8b8" + }, + "attachedElementGuid" : { + "value" : "c2cf5f9d-3a37-4e68-af6f-7f78a80461db" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "099ba95b-88ce-4902-a333-566d23fdb8b8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "099ba95b-88ce-4902-a333-566d23fdb8b8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "099ba95b-88ce-4902-a333-566d23fdb8b8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "099ba95b-88ce-4902-a333-566d23fdb8b8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 119.790123, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9000f19b-6696-4976-aec3-4eef61279661" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9000f19b-6696-4976-aec3-4eef61279661" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "9000f19b-6696-4976-aec3-4eef61279661" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "9000f19b-6696-4976-aec3-4eef61279661" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d81c4c6d-58a0-4cf2-83b2-01d60a12dd7a" + }, + "attachedElementGuid" : { + "value" : "9000f19b-6696-4976-aec3-4eef61279661" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d81c4c6d-58a0-4cf2-83b2-01d60a12dd7a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d81c4c6d-58a0-4cf2-83b2-01d60a12dd7a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d81c4c6d-58a0-4cf2-83b2-01d60a12dd7a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d81c4c6d-58a0-4cf2-83b2-01d60a12dd7a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 119.955124, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9a36cca6-115c-4a5f-8c73-15da0b3a55e9" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9a36cca6-115c-4a5f-8c73-15da0b3a55e9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "9a36cca6-115c-4a5f-8c73-15da0b3a55e9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "9a36cca6-115c-4a5f-8c73-15da0b3a55e9" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "40afe625-2dc9-4f69-97ce-5317f2a77e2c" + }, + "attachedElementGuid" : { + "value" : "9a36cca6-115c-4a5f-8c73-15da0b3a55e9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "40afe625-2dc9-4f69-97ce-5317f2a77e2c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "40afe625-2dc9-4f69-97ce-5317f2a77e2c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "40afe625-2dc9-4f69-97ce-5317f2a77e2c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "40afe625-2dc9-4f69-97ce-5317f2a77e2c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Flick_BM,Assembly-CSharp", + "availableFlickDirections" : [ + + ], + "exactJudgeTime" : 120.120125, + "elementName" : "New Flick", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9b5c971b-57fd-42d3-b2ee-1ef7b45a9f2c" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9b5c971b-57fd-42d3-b2ee-1ef7b45a9f2c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "9b5c971b-57fd-42d3-b2ee-1ef7b45a9f2c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "9b5c971b-57fd-42d3-b2ee-1ef7b45a9f2c" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualFlick", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "497f173a-5ac8-438b-8884-e76273c4374f" + }, + "attachedElementGuid" : { + "value" : "9b5c971b-57fd-42d3-b2ee-1ef7b45a9f2c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : -34.4 + }, + "originalScale" : { + "x" : 1.7, + "y" : 1.7, + "z" : 1.7 + }, + "attachedElementGuid" : { + "value" : "497f173a-5ac8-438b-8884-e76273c4374f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "497f173a-5ac8-438b-8884-e76273c4374f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "497f173a-5ac8-438b-8884-e76273c4374f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "497f173a-5ac8-438b-8884-e76273c4374f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 120.285126, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1619cf46-023a-49f1-b3e6-6d04da41da9d" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1619cf46-023a-49f1-b3e6-6d04da41da9d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "1619cf46-023a-49f1-b3e6-6d04da41da9d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "1619cf46-023a-49f1-b3e6-6d04da41da9d" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "72d5b59f-c360-4383-845e-6a60347b4766" + }, + "attachedElementGuid" : { + "value" : "1619cf46-023a-49f1-b3e6-6d04da41da9d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "72d5b59f-c360-4383-845e-6a60347b4766" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "72d5b59f-c360-4383-845e-6a60347b4766" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "72d5b59f-c360-4383-845e-6a60347b4766" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "72d5b59f-c360-4383-845e-6a60347b4766" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 120.780128, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5e15b721-4f66-47b2-bbc3-3ebcef87d768" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5e15b721-4f66-47b2-bbc3-3ebcef87d768" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "5e15b721-4f66-47b2-bbc3-3ebcef87d768" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "5e15b721-4f66-47b2-bbc3-3ebcef87d768" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d8bcfdc4-c391-4703-8a69-889b1fb5996b" + }, + "attachedElementGuid" : { + "value" : "5e15b721-4f66-47b2-bbc3-3ebcef87d768" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d8bcfdc4-c391-4703-8a69-889b1fb5996b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d8bcfdc4-c391-4703-8a69-889b1fb5996b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d8bcfdc4-c391-4703-8a69-889b1fb5996b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d8bcfdc4-c391-4703-8a69-889b1fb5996b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 121.110123, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8cee04cd-9bbd-4227-9c5f-b2779ad9a322" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8cee04cd-9bbd-4227-9c5f-b2779ad9a322" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "8cee04cd-9bbd-4227-9c5f-b2779ad9a322" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "8cee04cd-9bbd-4227-9c5f-b2779ad9a322" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a8647013-6344-451d-b509-1710685762a2" + }, + "attachedElementGuid" : { + "value" : "8cee04cd-9bbd-4227-9c5f-b2779ad9a322" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a8647013-6344-451d-b509-1710685762a2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a8647013-6344-451d-b509-1710685762a2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a8647013-6344-451d-b509-1710685762a2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "a8647013-6344-451d-b509-1710685762a2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 121.440125, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8d602ad2-011e-4f21-8420-2c0b3f70c580" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8d602ad2-011e-4f21-8420-2c0b3f70c580" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "8d602ad2-011e-4f21-8420-2c0b3f70c580" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "8d602ad2-011e-4f21-8420-2c0b3f70c580" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "342b9bd9-177f-4436-9cee-89b4f50d9dab" + }, + "attachedElementGuid" : { + "value" : "8d602ad2-011e-4f21-8420-2c0b3f70c580" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "342b9bd9-177f-4436-9cee-89b4f50d9dab" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "342b9bd9-177f-4436-9cee-89b4f50d9dab" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "342b9bd9-177f-4436-9cee-89b4f50d9dab" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "342b9bd9-177f-4436-9cee-89b4f50d9dab" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 121.605125, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "49c082a3-0f81-486e-9b1a-17d850103443" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "49c082a3-0f81-486e-9b1a-17d850103443" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "49c082a3-0f81-486e-9b1a-17d850103443" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "49c082a3-0f81-486e-9b1a-17d850103443" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "504d3f53-5d49-4b82-95a4-7b8f7d15d3d9" + }, + "attachedElementGuid" : { + "value" : "49c082a3-0f81-486e-9b1a-17d850103443" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "504d3f53-5d49-4b82-95a4-7b8f7d15d3d9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "504d3f53-5d49-4b82-95a4-7b8f7d15d3d9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "504d3f53-5d49-4b82-95a4-7b8f7d15d3d9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "504d3f53-5d49-4b82-95a4-7b8f7d15d3d9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 121.770126, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1431aa1d-90a6-4b8f-a53f-25f23dbe531e" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1431aa1d-90a6-4b8f-a53f-25f23dbe531e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "1431aa1d-90a6-4b8f-a53f-25f23dbe531e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "1431aa1d-90a6-4b8f-a53f-25f23dbe531e" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "794686f2-5b10-420f-b342-45119e70a2d2" + }, + "attachedElementGuid" : { + "value" : "1431aa1d-90a6-4b8f-a53f-25f23dbe531e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "794686f2-5b10-420f-b342-45119e70a2d2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "794686f2-5b10-420f-b342-45119e70a2d2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "794686f2-5b10-420f-b342-45119e70a2d2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "794686f2-5b10-420f-b342-45119e70a2d2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 121.935127, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d0e65bc8-fa27-46c7-b180-2c4340efb89f" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d0e65bc8-fa27-46c7-b180-2c4340efb89f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "d0e65bc8-fa27-46c7-b180-2c4340efb89f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "d0e65bc8-fa27-46c7-b180-2c4340efb89f" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "79935e74-8871-469e-95f4-718e29dc9907" + }, + "attachedElementGuid" : { + "value" : "d0e65bc8-fa27-46c7-b180-2c4340efb89f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "79935e74-8871-469e-95f4-718e29dc9907" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "79935e74-8871-469e-95f4-718e29dc9907" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "79935e74-8871-469e-95f4-718e29dc9907" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "79935e74-8871-469e-95f4-718e29dc9907" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Flick_BM,Assembly-CSharp", + "availableFlickDirections" : [ + + ], + "exactJudgeTime" : 122.100128, + "elementName" : "New Flick", + "tags" : [ + + ], + "elementGuid" : { + "value" : "50ba4d2b-8abd-4b95-a302-39c7c76c8d0c" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "50ba4d2b-8abd-4b95-a302-39c7c76c8d0c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "50ba4d2b-8abd-4b95-a302-39c7c76c8d0c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "50ba4d2b-8abd-4b95-a302-39c7c76c8d0c" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualFlick", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a1796c1a-fc17-4e48-92b4-477685d10026" + }, + "attachedElementGuid" : { + "value" : "50ba4d2b-8abd-4b95-a302-39c7c76c8d0c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 28 + }, + "originalScale" : { + "x" : 1.7, + "y" : 1.7, + "z" : 0.8 + }, + "attachedElementGuid" : { + "value" : "a1796c1a-fc17-4e48-92b4-477685d10026" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a1796c1a-fc17-4e48-92b4-477685d10026" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a1796c1a-fc17-4e48-92b4-477685d10026" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "a1796c1a-fc17-4e48-92b4-477685d10026" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Hold_BM,Assembly-CSharp", + "holdEndTime" : 122.93013, + "exactJudgeTime" : 122.43013, + "elementName" : "New Hold", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4659fc13-563d-41e2-a071-e1b288dcdb7e" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4659fc13-563d-41e2-a071-e1b288dcdb7e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "4659fc13-563d-41e2-a071-e1b288dcdb7e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "4659fc13-563d-41e2-a071-e1b288dcdb7e" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisualHold_BM,Assembly-CSharp", + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualHold", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6869e2a9-0481-4723-acb8-0cba6ab3629b" + }, + "attachedElementGuid" : { + "value" : "4659fc13-563d-41e2-a071-e1b288dcdb7e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6869e2a9-0481-4723-acb8-0cba6ab3629b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6869e2a9-0481-4723-acb8-0cba6ab3629b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6869e2a9-0481-4723-acb8-0cba6ab3629b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExtend_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.5 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteHoldingBreath_BM,Assembly-CSharp", + "effectTime" : 0.5 + } + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "6869e2a9-0481-4723-acb8-0cba6ab3629b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 122.760124, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a4ad7876-af7d-43a2-8a46-34d12141700e" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a4ad7876-af7d-43a2-8a46-34d12141700e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "a4ad7876-af7d-43a2-8a46-34d12141700e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "a4ad7876-af7d-43a2-8a46-34d12141700e" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e57e4e5f-1125-4e55-85f0-7105a57bb389" + }, + "attachedElementGuid" : { + "value" : "a4ad7876-af7d-43a2-8a46-34d12141700e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e57e4e5f-1125-4e55-85f0-7105a57bb389" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e57e4e5f-1125-4e55-85f0-7105a57bb389" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e57e4e5f-1125-4e55-85f0-7105a57bb389" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "e57e4e5f-1125-4e55-85f0-7105a57bb389" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 122.842628, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "79a37253-8a7a-40be-90a2-1b3447065f7b" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "79a37253-8a7a-40be-90a2-1b3447065f7b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "79a37253-8a7a-40be-90a2-1b3447065f7b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "79a37253-8a7a-40be-90a2-1b3447065f7b" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "15b92368-efc4-4414-a365-6d7cb625c8ba" + }, + "attachedElementGuid" : { + "value" : "79a37253-8a7a-40be-90a2-1b3447065f7b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "15b92368-efc4-4414-a365-6d7cb625c8ba" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "15b92368-efc4-4414-a365-6d7cb625c8ba" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "15b92368-efc4-4414-a365-6d7cb625c8ba" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "15b92368-efc4-4414-a365-6d7cb625c8ba" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 122.925125, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f50b887c-763d-4cb9-bfa7-32682b145ef5" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f50b887c-763d-4cb9-bfa7-32682b145ef5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "f50b887c-763d-4cb9-bfa7-32682b145ef5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "f50b887c-763d-4cb9-bfa7-32682b145ef5" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3ed8e227-116f-4198-bb62-4a308a7fe4a2" + }, + "attachedElementGuid" : { + "value" : "f50b887c-763d-4cb9-bfa7-32682b145ef5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3ed8e227-116f-4198-bb62-4a308a7fe4a2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3ed8e227-116f-4198-bb62-4a308a7fe4a2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3ed8e227-116f-4198-bb62-4a308a7fe4a2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "3ed8e227-116f-4198-bb62-4a308a7fe4a2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 123.007629, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "72f96064-4534-42be-9820-aed667efb2fb" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "72f96064-4534-42be-9820-aed667efb2fb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "72f96064-4534-42be-9820-aed667efb2fb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "72f96064-4534-42be-9820-aed667efb2fb" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "35a6783e-cc6d-4b9f-906a-f713558aaf3d" + }, + "attachedElementGuid" : { + "value" : "72f96064-4534-42be-9820-aed667efb2fb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "35a6783e-cc6d-4b9f-906a-f713558aaf3d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "35a6783e-cc6d-4b9f-906a-f713558aaf3d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "35a6783e-cc6d-4b9f-906a-f713558aaf3d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "35a6783e-cc6d-4b9f-906a-f713558aaf3d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 123.090126, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a1dd0b2e-cc1f-4fa9-9fa1-7d99e34ec2cb" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a1dd0b2e-cc1f-4fa9-9fa1-7d99e34ec2cb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "a1dd0b2e-cc1f-4fa9-9fa1-7d99e34ec2cb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "a1dd0b2e-cc1f-4fa9-9fa1-7d99e34ec2cb" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a107ab75-8638-469d-8704-9277e9f5195c" + }, + "attachedElementGuid" : { + "value" : "a1dd0b2e-cc1f-4fa9-9fa1-7d99e34ec2cb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a107ab75-8638-469d-8704-9277e9f5195c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a107ab75-8638-469d-8704-9277e9f5195c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a107ab75-8638-469d-8704-9277e9f5195c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "a107ab75-8638-469d-8704-9277e9f5195c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 123.090126, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "69f94fbb-62f6-4f48-9057-e7b8c72da239" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "69f94fbb-62f6-4f48-9057-e7b8c72da239" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "69f94fbb-62f6-4f48-9057-e7b8c72da239" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "69f94fbb-62f6-4f48-9057-e7b8c72da239" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "344e926c-aebd-489b-90b1-a625e84624fc" + }, + "attachedElementGuid" : { + "value" : "69f94fbb-62f6-4f48-9057-e7b8c72da239" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "344e926c-aebd-489b-90b1-a625e84624fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "344e926c-aebd-489b-90b1-a625e84624fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "344e926c-aebd-489b-90b1-a625e84624fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "344e926c-aebd-489b-90b1-a625e84624fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 123.255127, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "502ba850-0ef5-4266-997f-215311b658e9" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "502ba850-0ef5-4266-997f-215311b658e9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "502ba850-0ef5-4266-997f-215311b658e9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "502ba850-0ef5-4266-997f-215311b658e9" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b8a172ca-e4c1-4bf5-a0d9-178ea8d96e7e" + }, + "attachedElementGuid" : { + "value" : "502ba850-0ef5-4266-997f-215311b658e9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b8a172ca-e4c1-4bf5-a0d9-178ea8d96e7e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b8a172ca-e4c1-4bf5-a0d9-178ea8d96e7e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b8a172ca-e4c1-4bf5-a0d9-178ea8d96e7e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "b8a172ca-e4c1-4bf5-a0d9-178ea8d96e7e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 123.75013, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "11b22f9d-5475-4355-aaaa-ecb5c1d325e1" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "11b22f9d-5475-4355-aaaa-ecb5c1d325e1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "11b22f9d-5475-4355-aaaa-ecb5c1d325e1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "11b22f9d-5475-4355-aaaa-ecb5c1d325e1" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c42409ee-4bac-4dd4-a869-dfb2eef1535c" + }, + "attachedElementGuid" : { + "value" : "11b22f9d-5475-4355-aaaa-ecb5c1d325e1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c42409ee-4bac-4dd4-a869-dfb2eef1535c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c42409ee-4bac-4dd4-a869-dfb2eef1535c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c42409ee-4bac-4dd4-a869-dfb2eef1535c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "c42409ee-4bac-4dd4-a869-dfb2eef1535c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 123.915131, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "01d557c9-1ae2-4b58-b37c-e153d309a644" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "01d557c9-1ae2-4b58-b37c-e153d309a644" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "01d557c9-1ae2-4b58-b37c-e153d309a644" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "01d557c9-1ae2-4b58-b37c-e153d309a644" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "366bdcaf-18b2-467c-a9f1-02778971504e" + }, + "attachedElementGuid" : { + "value" : "01d557c9-1ae2-4b58-b37c-e153d309a644" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "366bdcaf-18b2-467c-a9f1-02778971504e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "366bdcaf-18b2-467c-a9f1-02778971504e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "366bdcaf-18b2-467c-a9f1-02778971504e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "366bdcaf-18b2-467c-a9f1-02778971504e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Flick_BM,Assembly-CSharp", + "availableFlickDirections" : [ + + ], + "exactJudgeTime" : 124.080132, + "elementName" : "New Flick", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bdfc15c4-e0ca-4b38-84de-79966a258504" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bdfc15c4-e0ca-4b38-84de-79966a258504" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "bdfc15c4-e0ca-4b38-84de-79966a258504" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "bdfc15c4-e0ca-4b38-84de-79966a258504" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualFlick", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "78f0da50-56ac-472b-822c-257e9ae97fd7" + }, + "attachedElementGuid" : { + "value" : "bdfc15c4-e0ca-4b38-84de-79966a258504" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : -45 + }, + "originalScale" : { + "x" : 1.7, + "y" : 1.7, + "z" : 1.7 + }, + "attachedElementGuid" : { + "value" : "78f0da50-56ac-472b-822c-257e9ae97fd7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "78f0da50-56ac-472b-822c-257e9ae97fd7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "78f0da50-56ac-472b-822c-257e9ae97fd7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "78f0da50-56ac-472b-822c-257e9ae97fd7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 124.080132, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a62f4fec-c1bd-4fcc-adf0-a91e460aa385" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a62f4fec-c1bd-4fcc-adf0-a91e460aa385" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "a62f4fec-c1bd-4fcc-adf0-a91e460aa385" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "a62f4fec-c1bd-4fcc-adf0-a91e460aa385" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "867a3319-1d28-457a-9552-a54992d4b330" + }, + "attachedElementGuid" : { + "value" : "a62f4fec-c1bd-4fcc-adf0-a91e460aa385" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "867a3319-1d28-457a-9552-a54992d4b330" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "867a3319-1d28-457a-9552-a54992d4b330" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "867a3319-1d28-457a-9552-a54992d4b330" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "867a3319-1d28-457a-9552-a54992d4b330" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 124.245125, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "97ef88ed-2dc1-40ef-bde3-e35404574ea6" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "97ef88ed-2dc1-40ef-bde3-e35404574ea6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "97ef88ed-2dc1-40ef-bde3-e35404574ea6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "97ef88ed-2dc1-40ef-bde3-e35404574ea6" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c39d6411-e17d-46d3-ad1e-0599f102536a" + }, + "attachedElementGuid" : { + "value" : "97ef88ed-2dc1-40ef-bde3-e35404574ea6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c39d6411-e17d-46d3-ad1e-0599f102536a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c39d6411-e17d-46d3-ad1e-0599f102536a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c39d6411-e17d-46d3-ad1e-0599f102536a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "c39d6411-e17d-46d3-ad1e-0599f102536a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 125.070847, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e818787a-2b1d-4c41-9310-d9c83ce986c1" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e818787a-2b1d-4c41-9310-d9c83ce986c1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "e818787a-2b1d-4c41-9310-d9c83ce986c1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "e818787a-2b1d-4c41-9310-d9c83ce986c1" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e6ece855-19ce-4864-b08d-82e4a627f4f5" + }, + "attachedElementGuid" : { + "value" : "e818787a-2b1d-4c41-9310-d9c83ce986c1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e6ece855-19ce-4864-b08d-82e4a627f4f5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e6ece855-19ce-4864-b08d-82e4a627f4f5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e6ece855-19ce-4864-b08d-82e4a627f4f5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "e6ece855-19ce-4864-b08d-82e4a627f4f5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 125.180847, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "626e567a-c92c-4feb-aa55-fe7b333f02b4" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "626e567a-c92c-4feb-aa55-fe7b333f02b4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "626e567a-c92c-4feb-aa55-fe7b333f02b4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "626e567a-c92c-4feb-aa55-fe7b333f02b4" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7b48b09c-d8dd-4a02-b6db-44d29d402d8b" + }, + "attachedElementGuid" : { + "value" : "626e567a-c92c-4feb-aa55-fe7b333f02b4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7b48b09c-d8dd-4a02-b6db-44d29d402d8b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7b48b09c-d8dd-4a02-b6db-44d29d402d8b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "7b48b09c-d8dd-4a02-b6db-44d29d402d8b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "7b48b09c-d8dd-4a02-b6db-44d29d402d8b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 125.290848, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "291be68e-3e6d-47f9-8e7d-5f3c960741aa" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "291be68e-3e6d-47f9-8e7d-5f3c960741aa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "291be68e-3e6d-47f9-8e7d-5f3c960741aa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "291be68e-3e6d-47f9-8e7d-5f3c960741aa" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5ff5efba-1527-419b-b5bf-4992fc9cfb0e" + }, + "attachedElementGuid" : { + "value" : "291be68e-3e6d-47f9-8e7d-5f3c960741aa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5ff5efba-1527-419b-b5bf-4992fc9cfb0e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5ff5efba-1527-419b-b5bf-4992fc9cfb0e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5ff5efba-1527-419b-b5bf-4992fc9cfb0e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "5ff5efba-1527-419b-b5bf-4992fc9cfb0e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 125.400856, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8f0b6a84-7bf1-41e5-b932-c2a9947d4be1" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8f0b6a84-7bf1-41e5-b932-c2a9947d4be1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "8f0b6a84-7bf1-41e5-b932-c2a9947d4be1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "8f0b6a84-7bf1-41e5-b932-c2a9947d4be1" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6460ba60-4509-46d2-b0f0-3c6d682c1152" + }, + "attachedElementGuid" : { + "value" : "8f0b6a84-7bf1-41e5-b932-c2a9947d4be1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6460ba60-4509-46d2-b0f0-3c6d682c1152" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6460ba60-4509-46d2-b0f0-3c6d682c1152" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6460ba60-4509-46d2-b0f0-3c6d682c1152" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "6460ba60-4509-46d2-b0f0-3c6d682c1152" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 125.510857, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "56b85d0f-5a1a-4f9c-8e28-b5d2c1c69cae" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "56b85d0f-5a1a-4f9c-8e28-b5d2c1c69cae" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "56b85d0f-5a1a-4f9c-8e28-b5d2c1c69cae" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "56b85d0f-5a1a-4f9c-8e28-b5d2c1c69cae" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "16dedd1c-5f50-4357-b090-285992e4a22d" + }, + "attachedElementGuid" : { + "value" : "56b85d0f-5a1a-4f9c-8e28-b5d2c1c69cae" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "16dedd1c-5f50-4357-b090-285992e4a22d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "16dedd1c-5f50-4357-b090-285992e4a22d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "16dedd1c-5f50-4357-b090-285992e4a22d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "16dedd1c-5f50-4357-b090-285992e4a22d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 125.620865, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d6074dee-41e2-44ac-981b-b7fde0319d86" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d6074dee-41e2-44ac-981b-b7fde0319d86" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "d6074dee-41e2-44ac-981b-b7fde0319d86" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "d6074dee-41e2-44ac-981b-b7fde0319d86" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7600fd2c-8a3e-4e7c-93d3-fc039a9e0883" + }, + "attachedElementGuid" : { + "value" : "d6074dee-41e2-44ac-981b-b7fde0319d86" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7600fd2c-8a3e-4e7c-93d3-fc039a9e0883" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7600fd2c-8a3e-4e7c-93d3-fc039a9e0883" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "7600fd2c-8a3e-4e7c-93d3-fc039a9e0883" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "7600fd2c-8a3e-4e7c-93d3-fc039a9e0883" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 125.730865, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2f0a74c6-f6af-43f1-a3c2-3c6086a9dd9b" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2f0a74c6-f6af-43f1-a3c2-3c6086a9dd9b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "2f0a74c6-f6af-43f1-a3c2-3c6086a9dd9b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "2f0a74c6-f6af-43f1-a3c2-3c6086a9dd9b" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7d3005bf-ed9b-42f7-a912-ffe738510d92" + }, + "attachedElementGuid" : { + "value" : "2f0a74c6-f6af-43f1-a3c2-3c6086a9dd9b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7d3005bf-ed9b-42f7-a912-ffe738510d92" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7d3005bf-ed9b-42f7-a912-ffe738510d92" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "7d3005bf-ed9b-42f7-a912-ffe738510d92" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "7d3005bf-ed9b-42f7-a912-ffe738510d92" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 125.840866, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f656c01d-f40e-49ed-951f-5a5301c79070" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f656c01d-f40e-49ed-951f-5a5301c79070" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "f656c01d-f40e-49ed-951f-5a5301c79070" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "f656c01d-f40e-49ed-951f-5a5301c79070" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a5b32d02-90c9-4d3d-832c-bf0a8f47b3bd" + }, + "attachedElementGuid" : { + "value" : "f656c01d-f40e-49ed-951f-5a5301c79070" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a5b32d02-90c9-4d3d-832c-bf0a8f47b3bd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a5b32d02-90c9-4d3d-832c-bf0a8f47b3bd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a5b32d02-90c9-4d3d-832c-bf0a8f47b3bd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "a5b32d02-90c9-4d3d-832c-bf0a8f47b3bd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 125.950874, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c245b2b7-1f69-4535-8f5f-c1f5691beff6" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c245b2b7-1f69-4535-8f5f-c1f5691beff6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "c245b2b7-1f69-4535-8f5f-c1f5691beff6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "c245b2b7-1f69-4535-8f5f-c1f5691beff6" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9c2b0527-600e-447c-8b69-4b97e8e028ee" + }, + "attachedElementGuid" : { + "value" : "c245b2b7-1f69-4535-8f5f-c1f5691beff6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9c2b0527-600e-447c-8b69-4b97e8e028ee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9c2b0527-600e-447c-8b69-4b97e8e028ee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "9c2b0527-600e-447c-8b69-4b97e8e028ee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "9c2b0527-600e-447c-8b69-4b97e8e028ee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 126.060875, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "133123c1-d3a5-4220-a582-19f8d2d1eedc" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "133123c1-d3a5-4220-a582-19f8d2d1eedc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "133123c1-d3a5-4220-a582-19f8d2d1eedc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "133123c1-d3a5-4220-a582-19f8d2d1eedc" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0ac8f22e-a814-40e5-9f6d-aeac9d27a5f0" + }, + "attachedElementGuid" : { + "value" : "133123c1-d3a5-4220-a582-19f8d2d1eedc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0ac8f22e-a814-40e5-9f6d-aeac9d27a5f0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0ac8f22e-a814-40e5-9f6d-aeac9d27a5f0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0ac8f22e-a814-40e5-9f6d-aeac9d27a5f0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "0ac8f22e-a814-40e5-9f6d-aeac9d27a5f0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 126.170876, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fe3f52d5-803a-42a8-9f77-0f4a9d969a87" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fe3f52d5-803a-42a8-9f77-0f4a9d969a87" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "fe3f52d5-803a-42a8-9f77-0f4a9d969a87" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "fe3f52d5-803a-42a8-9f77-0f4a9d969a87" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "13b2260e-1a02-45ae-ba75-0f506799dd2b" + }, + "attachedElementGuid" : { + "value" : "fe3f52d5-803a-42a8-9f77-0f4a9d969a87" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "13b2260e-1a02-45ae-ba75-0f506799dd2b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "13b2260e-1a02-45ae-ba75-0f506799dd2b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "13b2260e-1a02-45ae-ba75-0f506799dd2b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "13b2260e-1a02-45ae-ba75-0f506799dd2b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 126.280884, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bd2a5ead-4a31-4ed7-9e96-88da9cb2879f" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bd2a5ead-4a31-4ed7-9e96-88da9cb2879f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "bd2a5ead-4a31-4ed7-9e96-88da9cb2879f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "bd2a5ead-4a31-4ed7-9e96-88da9cb2879f" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3387f045-41dc-479e-89f4-6a26bfb3caa2" + }, + "attachedElementGuid" : { + "value" : "bd2a5ead-4a31-4ed7-9e96-88da9cb2879f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3387f045-41dc-479e-89f4-6a26bfb3caa2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3387f045-41dc-479e-89f4-6a26bfb3caa2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3387f045-41dc-479e-89f4-6a26bfb3caa2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "3387f045-41dc-479e-89f4-6a26bfb3caa2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 126.390129, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "28b71603-299b-4c80-b3c4-ad1913b4135b" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "28b71603-299b-4c80-b3c4-ad1913b4135b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "28b71603-299b-4c80-b3c4-ad1913b4135b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "28b71603-299b-4c80-b3c4-ad1913b4135b" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4c57e0c1-dca9-495d-906e-121594b92ea8" + }, + "attachedElementGuid" : { + "value" : "28b71603-299b-4c80-b3c4-ad1913b4135b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4c57e0c1-dca9-495d-906e-121594b92ea8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4c57e0c1-dca9-495d-906e-121594b92ea8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4c57e0c1-dca9-495d-906e-121594b92ea8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "4c57e0c1-dca9-495d-906e-121594b92ea8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 126.55513, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "adc05a21-d22c-4155-948f-9c118c0d1fb2" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "adc05a21-d22c-4155-948f-9c118c0d1fb2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "adc05a21-d22c-4155-948f-9c118c0d1fb2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "adc05a21-d22c-4155-948f-9c118c0d1fb2" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a6a738c1-da39-43f1-bcc9-8ae8667d171f" + }, + "attachedElementGuid" : { + "value" : "adc05a21-d22c-4155-948f-9c118c0d1fb2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a6a738c1-da39-43f1-bcc9-8ae8667d171f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a6a738c1-da39-43f1-bcc9-8ae8667d171f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a6a738c1-da39-43f1-bcc9-8ae8667d171f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "a6a738c1-da39-43f1-bcc9-8ae8667d171f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 126.720894, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "04d67fd2-f6b6-4613-aaac-7d9d25f1c5a0" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "04d67fd2-f6b6-4613-aaac-7d9d25f1c5a0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "04d67fd2-f6b6-4613-aaac-7d9d25f1c5a0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "04d67fd2-f6b6-4613-aaac-7d9d25f1c5a0" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "52643a8d-b31e-4203-a384-bd2d9d722df0" + }, + "attachedElementGuid" : { + "value" : "04d67fd2-f6b6-4613-aaac-7d9d25f1c5a0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "52643a8d-b31e-4203-a384-bd2d9d722df0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "52643a8d-b31e-4203-a384-bd2d9d722df0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "52643a8d-b31e-4203-a384-bd2d9d722df0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "52643a8d-b31e-4203-a384-bd2d9d722df0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 126.885132, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "56dcf376-2bda-4dc5-8f14-919538dcb0d8" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "56dcf376-2bda-4dc5-8f14-919538dcb0d8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "56dcf376-2bda-4dc5-8f14-919538dcb0d8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "56dcf376-2bda-4dc5-8f14-919538dcb0d8" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "674b034f-85e5-4231-a3aa-07ccbe3c84d1" + }, + "attachedElementGuid" : { + "value" : "56dcf376-2bda-4dc5-8f14-919538dcb0d8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "674b034f-85e5-4231-a3aa-07ccbe3c84d1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "674b034f-85e5-4231-a3aa-07ccbe3c84d1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "674b034f-85e5-4231-a3aa-07ccbe3c84d1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "674b034f-85e5-4231-a3aa-07ccbe3c84d1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Hold_BM,Assembly-CSharp", + "holdEndTime" : 127.550133, + "exactJudgeTime" : 127.050133, + "elementName" : "New Hold", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2018cde8-44f0-4f6b-b546-3a58c6426d3d" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2018cde8-44f0-4f6b-b546-3a58c6426d3d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "2018cde8-44f0-4f6b-b546-3a58c6426d3d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "2018cde8-44f0-4f6b-b546-3a58c6426d3d" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisualHold_BM,Assembly-CSharp", + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualHold", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "46c3242a-8f11-49c0-a4ab-a5b55e9f7a82" + }, + "attachedElementGuid" : { + "value" : "2018cde8-44f0-4f6b-b546-3a58c6426d3d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "46c3242a-8f11-49c0-a4ab-a5b55e9f7a82" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "46c3242a-8f11-49c0-a4ab-a5b55e9f7a82" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "46c3242a-8f11-49c0-a4ab-a5b55e9f7a82" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExtend_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.5 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteHoldingBreath_BM,Assembly-CSharp", + "effectTime" : 0.5 + } + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "46c3242a-8f11-49c0-a4ab-a5b55e9f7a82" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 127.050133, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "60f8852e-5051-4bd2-93de-56154aadb196" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "60f8852e-5051-4bd2-93de-56154aadb196" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "60f8852e-5051-4bd2-93de-56154aadb196" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "60f8852e-5051-4bd2-93de-56154aadb196" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ebabfed3-7d69-4d7c-ba73-c00e1b42c8b6" + }, + "attachedElementGuid" : { + "value" : "60f8852e-5051-4bd2-93de-56154aadb196" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ebabfed3-7d69-4d7c-ba73-c00e1b42c8b6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ebabfed3-7d69-4d7c-ba73-c00e1b42c8b6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ebabfed3-7d69-4d7c-ba73-c00e1b42c8b6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "ebabfed3-7d69-4d7c-ba73-c00e1b42c8b6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 127.545135, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "12b9b315-1495-43ba-a815-702753cd1628" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "12b9b315-1495-43ba-a815-702753cd1628" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "12b9b315-1495-43ba-a815-702753cd1628" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "12b9b315-1495-43ba-a815-702753cd1628" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "aee6b9c4-0b1c-487c-b8ff-a7ddc9d538f8" + }, + "attachedElementGuid" : { + "value" : "12b9b315-1495-43ba-a815-702753cd1628" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "aee6b9c4-0b1c-487c-b8ff-a7ddc9d538f8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "aee6b9c4-0b1c-487c-b8ff-a7ddc9d538f8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "aee6b9c4-0b1c-487c-b8ff-a7ddc9d538f8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "aee6b9c4-0b1c-487c-b8ff-a7ddc9d538f8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 127.627632, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ea003de2-4487-4700-95bd-aa506667928d" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ea003de2-4487-4700-95bd-aa506667928d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "ea003de2-4487-4700-95bd-aa506667928d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "ea003de2-4487-4700-95bd-aa506667928d" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f9765c81-4d02-44dd-8025-42c1bf83b54b" + }, + "attachedElementGuid" : { + "value" : "ea003de2-4487-4700-95bd-aa506667928d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f9765c81-4d02-44dd-8025-42c1bf83b54b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f9765c81-4d02-44dd-8025-42c1bf83b54b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f9765c81-4d02-44dd-8025-42c1bf83b54b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "f9765c81-4d02-44dd-8025-42c1bf83b54b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 127.710129, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "72ffd558-68a9-42ea-ab43-1d62cc829795" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "72ffd558-68a9-42ea-ab43-1d62cc829795" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "72ffd558-68a9-42ea-ab43-1d62cc829795" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "72ffd558-68a9-42ea-ab43-1d62cc829795" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9bcfcdd7-e9ae-4fa3-a7df-4e70f7e3a7f1" + }, + "attachedElementGuid" : { + "value" : "72ffd558-68a9-42ea-ab43-1d62cc829795" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9bcfcdd7-e9ae-4fa3-a7df-4e70f7e3a7f1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9bcfcdd7-e9ae-4fa3-a7df-4e70f7e3a7f1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "9bcfcdd7-e9ae-4fa3-a7df-4e70f7e3a7f1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "9bcfcdd7-e9ae-4fa3-a7df-4e70f7e3a7f1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 127.82093, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "090a6d37-2cf1-4974-b089-356b8ca2d1ca" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "090a6d37-2cf1-4974-b089-356b8ca2d1ca" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "090a6d37-2cf1-4974-b089-356b8ca2d1ca" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "090a6d37-2cf1-4974-b089-356b8ca2d1ca" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "26101f41-5d1b-4b10-9d44-994689a575c1" + }, + "attachedElementGuid" : { + "value" : "090a6d37-2cf1-4974-b089-356b8ca2d1ca" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "26101f41-5d1b-4b10-9d44-994689a575c1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "26101f41-5d1b-4b10-9d44-994689a575c1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "26101f41-5d1b-4b10-9d44-994689a575c1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "26101f41-5d1b-4b10-9d44-994689a575c1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 127.930931, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "dda612aa-4eaf-4e70-9dec-9735c0353a1e" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "dda612aa-4eaf-4e70-9dec-9735c0353a1e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "dda612aa-4eaf-4e70-9dec-9735c0353a1e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "dda612aa-4eaf-4e70-9dec-9735c0353a1e" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "434f14ad-d93f-475e-9db9-565d640769de" + }, + "attachedElementGuid" : { + "value" : "dda612aa-4eaf-4e70-9dec-9735c0353a1e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "434f14ad-d93f-475e-9db9-565d640769de" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "434f14ad-d93f-475e-9db9-565d640769de" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "434f14ad-d93f-475e-9db9-565d640769de" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "434f14ad-d93f-475e-9db9-565d640769de" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Flick_BM,Assembly-CSharp", + "availableFlickDirections" : [ + + ], + "exactJudgeTime" : 128.04, + "elementName" : "New Flick", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9328c77c-7682-4dda-b96e-16b73319b89d" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9328c77c-7682-4dda-b96e-16b73319b89d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "9328c77c-7682-4dda-b96e-16b73319b89d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "9328c77c-7682-4dda-b96e-16b73319b89d" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualFlick", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3efbaab9-8e59-4e1e-b016-6db98cb35cf4" + }, + "attachedElementGuid" : { + "value" : "9328c77c-7682-4dda-b96e-16b73319b89d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : -45 + }, + "originalScale" : { + "x" : 1.7, + "y" : 1.7, + "z" : 1.7 + }, + "attachedElementGuid" : { + "value" : "3efbaab9-8e59-4e1e-b016-6db98cb35cf4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3efbaab9-8e59-4e1e-b016-6db98cb35cf4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3efbaab9-8e59-4e1e-b016-6db98cb35cf4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "3efbaab9-8e59-4e1e-b016-6db98cb35cf4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 128.04, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a6d43a2c-8576-484b-ad62-872aec7ddfe3" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a6d43a2c-8576-484b-ad62-872aec7ddfe3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "a6d43a2c-8576-484b-ad62-872aec7ddfe3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "a6d43a2c-8576-484b-ad62-872aec7ddfe3" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "07203a67-87ca-4d91-bc33-8925d8b0a46d" + }, + "attachedElementGuid" : { + "value" : "a6d43a2c-8576-484b-ad62-872aec7ddfe3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "07203a67-87ca-4d91-bc33-8925d8b0a46d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "07203a67-87ca-4d91-bc33-8925d8b0a46d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "07203a67-87ca-4d91-bc33-8925d8b0a46d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "07203a67-87ca-4d91-bc33-8925d8b0a46d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 128.37, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c43a205a-5512-4c12-b381-bd3d737bb578" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c43a205a-5512-4c12-b381-bd3d737bb578" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "c43a205a-5512-4c12-b381-bd3d737bb578" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "c43a205a-5512-4c12-b381-bd3d737bb578" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d61e04d5-a0c8-4da4-9a1b-9a8a7b4cea89" + }, + "attachedElementGuid" : { + "value" : "c43a205a-5512-4c12-b381-bd3d737bb578" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d61e04d5-a0c8-4da4-9a1b-9a8a7b4cea89" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d61e04d5-a0c8-4da4-9a1b-9a8a7b4cea89" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d61e04d5-a0c8-4da4-9a1b-9a8a7b4cea89" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d61e04d5-a0c8-4da4-9a1b-9a8a7b4cea89" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 128.37, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c3e7b8a0-a28c-4aaa-92ac-07dd0cd93dcb" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c3e7b8a0-a28c-4aaa-92ac-07dd0cd93dcb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "c3e7b8a0-a28c-4aaa-92ac-07dd0cd93dcb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "c3e7b8a0-a28c-4aaa-92ac-07dd0cd93dcb" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "831c56a3-0e87-4baa-9773-144939aa3233" + }, + "attachedElementGuid" : { + "value" : "c3e7b8a0-a28c-4aaa-92ac-07dd0cd93dcb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "831c56a3-0e87-4baa-9773-144939aa3233" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "831c56a3-0e87-4baa-9773-144939aa3233" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "831c56a3-0e87-4baa-9773-144939aa3233" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "831c56a3-0e87-4baa-9773-144939aa3233" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 128.700134, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3f1ed670-30a7-473f-aa1e-2b20cd9120e2" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3f1ed670-30a7-473f-aa1e-2b20cd9120e2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "3f1ed670-30a7-473f-aa1e-2b20cd9120e2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "3f1ed670-30a7-473f-aa1e-2b20cd9120e2" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "624b8e2e-153e-4bfc-9051-3a2dce55b004" + }, + "attachedElementGuid" : { + "value" : "3f1ed670-30a7-473f-aa1e-2b20cd9120e2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "624b8e2e-153e-4bfc-9051-3a2dce55b004" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "624b8e2e-153e-4bfc-9051-3a2dce55b004" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "624b8e2e-153e-4bfc-9051-3a2dce55b004" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "624b8e2e-153e-4bfc-9051-3a2dce55b004" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 128.700134, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f607403d-3af0-481c-af9d-9a559191e547" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f607403d-3af0-481c-af9d-9a559191e547" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "f607403d-3af0-481c-af9d-9a559191e547" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "f607403d-3af0-481c-af9d-9a559191e547" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3797474b-613e-4100-b78c-d9656751f854" + }, + "attachedElementGuid" : { + "value" : "f607403d-3af0-481c-af9d-9a559191e547" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3797474b-613e-4100-b78c-d9656751f854" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3797474b-613e-4100-b78c-d9656751f854" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3797474b-613e-4100-b78c-d9656751f854" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "3797474b-613e-4100-b78c-d9656751f854" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 128.865128, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cf8964ac-3469-4540-9ca9-ac979cc6ee24" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "cf8964ac-3469-4540-9ca9-ac979cc6ee24" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "cf8964ac-3469-4540-9ca9-ac979cc6ee24" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "cf8964ac-3469-4540-9ca9-ac979cc6ee24" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "727f666c-aff9-41b7-ae2a-c9d1c201f825" + }, + "attachedElementGuid" : { + "value" : "cf8964ac-3469-4540-9ca9-ac979cc6ee24" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "727f666c-aff9-41b7-ae2a-c9d1c201f825" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "727f666c-aff9-41b7-ae2a-c9d1c201f825" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "727f666c-aff9-41b7-ae2a-c9d1c201f825" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "727f666c-aff9-41b7-ae2a-c9d1c201f825" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 129.03, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4abf8b1f-1a1b-45d1-b744-4ffd99e2ecef" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4abf8b1f-1a1b-45d1-b744-4ffd99e2ecef" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "4abf8b1f-1a1b-45d1-b744-4ffd99e2ecef" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "4abf8b1f-1a1b-45d1-b744-4ffd99e2ecef" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "09453d70-9308-4fb1-b137-951a5f1b8be0" + }, + "attachedElementGuid" : { + "value" : "4abf8b1f-1a1b-45d1-b744-4ffd99e2ecef" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "09453d70-9308-4fb1-b137-951a5f1b8be0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "09453d70-9308-4fb1-b137-951a5f1b8be0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "09453d70-9308-4fb1-b137-951a5f1b8be0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "09453d70-9308-4fb1-b137-951a5f1b8be0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 129.03, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "22311e87-0a37-44ee-a7e0-88fefee293a8" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "22311e87-0a37-44ee-a7e0-88fefee293a8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "22311e87-0a37-44ee-a7e0-88fefee293a8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "22311e87-0a37-44ee-a7e0-88fefee293a8" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8b680ff0-9bd1-4e44-ad0d-ac1487a36d07" + }, + "attachedElementGuid" : { + "value" : "22311e87-0a37-44ee-a7e0-88fefee293a8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8b680ff0-9bd1-4e44-ad0d-ac1487a36d07" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8b680ff0-9bd1-4e44-ad0d-ac1487a36d07" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8b680ff0-9bd1-4e44-ad0d-ac1487a36d07" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "8b680ff0-9bd1-4e44-ad0d-ac1487a36d07" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 129.195129, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1f73b8f2-0b1f-42e0-a97f-25c9100eb122" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1f73b8f2-0b1f-42e0-a97f-25c9100eb122" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "1f73b8f2-0b1f-42e0-a97f-25c9100eb122" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "1f73b8f2-0b1f-42e0-a97f-25c9100eb122" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "89431370-45db-44fd-a497-76f14e772b01" + }, + "attachedElementGuid" : { + "value" : "1f73b8f2-0b1f-42e0-a97f-25c9100eb122" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "89431370-45db-44fd-a497-76f14e772b01" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "89431370-45db-44fd-a497-76f14e772b01" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "89431370-45db-44fd-a497-76f14e772b01" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "89431370-45db-44fd-a497-76f14e772b01" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 129.360977, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7b8ca9ec-9717-4515-b539-29457c488d80" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7b8ca9ec-9717-4515-b539-29457c488d80" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "7b8ca9ec-9717-4515-b539-29457c488d80" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "7b8ca9ec-9717-4515-b539-29457c488d80" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c1ebcba4-074b-4eb4-9e26-58c05864cfef" + }, + "attachedElementGuid" : { + "value" : "7b8ca9ec-9717-4515-b539-29457c488d80" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c1ebcba4-074b-4eb4-9e26-58c05864cfef" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c1ebcba4-074b-4eb4-9e26-58c05864cfef" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c1ebcba4-074b-4eb4-9e26-58c05864cfef" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "c1ebcba4-074b-4eb4-9e26-58c05864cfef" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 129.525131, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "36d1ed37-1dde-4ec2-9d47-0216dddece31" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "36d1ed37-1dde-4ec2-9d47-0216dddece31" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "36d1ed37-1dde-4ec2-9d47-0216dddece31" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "36d1ed37-1dde-4ec2-9d47-0216dddece31" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6a4d41c2-773c-4ce3-8fa3-30136283f374" + }, + "attachedElementGuid" : { + "value" : "36d1ed37-1dde-4ec2-9d47-0216dddece31" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6a4d41c2-773c-4ce3-8fa3-30136283f374" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6a4d41c2-773c-4ce3-8fa3-30136283f374" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6a4d41c2-773c-4ce3-8fa3-30136283f374" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "6a4d41c2-773c-4ce3-8fa3-30136283f374" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 129.69014, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "49d89d20-66d0-4bb3-b2d7-99adbf908cd7" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "49d89d20-66d0-4bb3-b2d7-99adbf908cd7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "49d89d20-66d0-4bb3-b2d7-99adbf908cd7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "49d89d20-66d0-4bb3-b2d7-99adbf908cd7" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "41f49b68-19f7-4554-ac1f-eea827db4c1d" + }, + "attachedElementGuid" : { + "value" : "49d89d20-66d0-4bb3-b2d7-99adbf908cd7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "41f49b68-19f7-4554-ac1f-eea827db4c1d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "41f49b68-19f7-4554-ac1f-eea827db4c1d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "41f49b68-19f7-4554-ac1f-eea827db4c1d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "41f49b68-19f7-4554-ac1f-eea827db4c1d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 129.855133, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5101961a-3047-4559-8463-2bc455551290" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5101961a-3047-4559-8463-2bc455551290" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "5101961a-3047-4559-8463-2bc455551290" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "5101961a-3047-4559-8463-2bc455551290" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a70b9f21-da33-415e-8df2-8fc954fbcbe5" + }, + "attachedElementGuid" : { + "value" : "5101961a-3047-4559-8463-2bc455551290" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a70b9f21-da33-415e-8df2-8fc954fbcbe5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a70b9f21-da33-415e-8df2-8fc954fbcbe5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a70b9f21-da33-415e-8df2-8fc954fbcbe5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "a70b9f21-da33-415e-8df2-8fc954fbcbe5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 130.020142, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "04c1562a-8329-40b8-b31b-95089745279d" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "04c1562a-8329-40b8-b31b-95089745279d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "04c1562a-8329-40b8-b31b-95089745279d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "04c1562a-8329-40b8-b31b-95089745279d" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "aa87350d-3b70-47d6-b19c-ca27fbb86baa" + }, + "attachedElementGuid" : { + "value" : "04c1562a-8329-40b8-b31b-95089745279d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "aa87350d-3b70-47d6-b19c-ca27fbb86baa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "aa87350d-3b70-47d6-b19c-ca27fbb86baa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "aa87350d-3b70-47d6-b19c-ca27fbb86baa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "aa87350d-3b70-47d6-b19c-ca27fbb86baa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 130.131, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9df318ed-30a5-4691-9224-64efb23ed54d" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9df318ed-30a5-4691-9224-64efb23ed54d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "9df318ed-30a5-4691-9224-64efb23ed54d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "9df318ed-30a5-4691-9224-64efb23ed54d" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "73487f7c-929e-4d7f-86f5-8efe0e1e09d4" + }, + "attachedElementGuid" : { + "value" : "9df318ed-30a5-4691-9224-64efb23ed54d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "73487f7c-929e-4d7f-86f5-8efe0e1e09d4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "73487f7c-929e-4d7f-86f5-8efe0e1e09d4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "73487f7c-929e-4d7f-86f5-8efe0e1e09d4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "73487f7c-929e-4d7f-86f5-8efe0e1e09d4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 130.241013, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e93bf7fb-f5d7-44e1-a652-5b9813bbb712" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e93bf7fb-f5d7-44e1-a652-5b9813bbb712" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "e93bf7fb-f5d7-44e1-a652-5b9813bbb712" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "e93bf7fb-f5d7-44e1-a652-5b9813bbb712" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "dd5f13a5-f545-4874-90ff-115e7e3c6f23" + }, + "attachedElementGuid" : { + "value" : "e93bf7fb-f5d7-44e1-a652-5b9813bbb712" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "dd5f13a5-f545-4874-90ff-115e7e3c6f23" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "dd5f13a5-f545-4874-90ff-115e7e3c6f23" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "dd5f13a5-f545-4874-90ff-115e7e3c6f23" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "dd5f13a5-f545-4874-90ff-115e7e3c6f23" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 130.350128, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2fa1feab-5a7a-458c-86f9-ef503f98ad1c" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2fa1feab-5a7a-458c-86f9-ef503f98ad1c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "2fa1feab-5a7a-458c-86f9-ef503f98ad1c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "2fa1feab-5a7a-458c-86f9-ef503f98ad1c" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cd4449a4-0dfa-4cfd-a491-588c30cdabc4" + }, + "attachedElementGuid" : { + "value" : "2fa1feab-5a7a-458c-86f9-ef503f98ad1c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "cd4449a4-0dfa-4cfd-a491-588c30cdabc4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "cd4449a4-0dfa-4cfd-a491-588c30cdabc4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "cd4449a4-0dfa-4cfd-a491-588c30cdabc4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "cd4449a4-0dfa-4cfd-a491-588c30cdabc4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 130.461014, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "763b994d-5bc0-4356-842a-cfd13255a0a3" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "763b994d-5bc0-4356-842a-cfd13255a0a3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "763b994d-5bc0-4356-842a-cfd13255a0a3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "763b994d-5bc0-4356-842a-cfd13255a0a3" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "debf0295-9425-4b8a-8a06-23292c2c979f" + }, + "attachedElementGuid" : { + "value" : "763b994d-5bc0-4356-842a-cfd13255a0a3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "debf0295-9425-4b8a-8a06-23292c2c979f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "debf0295-9425-4b8a-8a06-23292c2c979f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "debf0295-9425-4b8a-8a06-23292c2c979f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "debf0295-9425-4b8a-8a06-23292c2c979f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 130.571014, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "514d2d32-e8f4-428a-aeab-59d01a3de178" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "514d2d32-e8f4-428a-aeab-59d01a3de178" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "514d2d32-e8f4-428a-aeab-59d01a3de178" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "514d2d32-e8f4-428a-aeab-59d01a3de178" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e3611f36-d1c4-42a0-8bac-f1fabc20a613" + }, + "attachedElementGuid" : { + "value" : "514d2d32-e8f4-428a-aeab-59d01a3de178" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e3611f36-d1c4-42a0-8bac-f1fabc20a613" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e3611f36-d1c4-42a0-8bac-f1fabc20a613" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e3611f36-d1c4-42a0-8bac-f1fabc20a613" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "e3611f36-d1c4-42a0-8bac-f1fabc20a613" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 130.681015, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a673413e-eb48-48c3-ba42-e2f9d32985e7" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a673413e-eb48-48c3-ba42-e2f9d32985e7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "a673413e-eb48-48c3-ba42-e2f9d32985e7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "a673413e-eb48-48c3-ba42-e2f9d32985e7" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e3b45565-afc0-4880-a086-e53ed04982fe" + }, + "attachedElementGuid" : { + "value" : "a673413e-eb48-48c3-ba42-e2f9d32985e7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e3b45565-afc0-4880-a086-e53ed04982fe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e3b45565-afc0-4880-a086-e53ed04982fe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e3b45565-afc0-4880-a086-e53ed04982fe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "e3b45565-afc0-4880-a086-e53ed04982fe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 130.762634, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "991ddb46-a1f8-4efc-8d7a-90e38bd14707" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "991ddb46-a1f8-4efc-8d7a-90e38bd14707" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "991ddb46-a1f8-4efc-8d7a-90e38bd14707" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "991ddb46-a1f8-4efc-8d7a-90e38bd14707" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d7804d58-a127-43e1-b125-4a5265e99dd8" + }, + "attachedElementGuid" : { + "value" : "991ddb46-a1f8-4efc-8d7a-90e38bd14707" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d7804d58-a127-43e1-b125-4a5265e99dd8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d7804d58-a127-43e1-b125-4a5265e99dd8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d7804d58-a127-43e1-b125-4a5265e99dd8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d7804d58-a127-43e1-b125-4a5265e99dd8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 130.845139, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "93603e59-5fe1-493e-ba03-d35d4f3bf690" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "93603e59-5fe1-493e-ba03-d35d4f3bf690" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "93603e59-5fe1-493e-ba03-d35d4f3bf690" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "93603e59-5fe1-493e-ba03-d35d4f3bf690" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "09443686-e1be-4fc7-8736-e21a0b7cd865" + }, + "attachedElementGuid" : { + "value" : "93603e59-5fe1-493e-ba03-d35d4f3bf690" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "09443686-e1be-4fc7-8736-e21a0b7cd865" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "09443686-e1be-4fc7-8736-e21a0b7cd865" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "09443686-e1be-4fc7-8736-e21a0b7cd865" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "09443686-e1be-4fc7-8736-e21a0b7cd865" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 130.927643, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4a7e1fb0-68ef-405f-87b8-9ada04372321" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4a7e1fb0-68ef-405f-87b8-9ada04372321" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "4a7e1fb0-68ef-405f-87b8-9ada04372321" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "4a7e1fb0-68ef-405f-87b8-9ada04372321" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c2581b06-7bc7-4b05-9307-ec045214ec7a" + }, + "attachedElementGuid" : { + "value" : "4a7e1fb0-68ef-405f-87b8-9ada04372321" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c2581b06-7bc7-4b05-9307-ec045214ec7a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c2581b06-7bc7-4b05-9307-ec045214ec7a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c2581b06-7bc7-4b05-9307-ec045214ec7a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "c2581b06-7bc7-4b05-9307-ec045214ec7a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 131.010132, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7c40db31-aba5-4395-89ad-1523b6b50986" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7c40db31-aba5-4395-89ad-1523b6b50986" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "7c40db31-aba5-4395-89ad-1523b6b50986" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "7c40db31-aba5-4395-89ad-1523b6b50986" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a5fb3a53-0b48-4eaf-a677-5ca60dad11e4" + }, + "attachedElementGuid" : { + "value" : "7c40db31-aba5-4395-89ad-1523b6b50986" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a5fb3a53-0b48-4eaf-a677-5ca60dad11e4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a5fb3a53-0b48-4eaf-a677-5ca60dad11e4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a5fb3a53-0b48-4eaf-a677-5ca60dad11e4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "a5fb3a53-0b48-4eaf-a677-5ca60dad11e4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp", + "elementName" : "Rain(0,-15,60)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9cd94358-38e9-4d29-9e66-bf6c6b554998" + }, + "attachedElementGuid" : { + "value" : "be72a124-1762-48a8-af81-2531cd202e9d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : -15, + "z" : 60 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9cd94358-38e9-4d29-9e66-bf6c6b554998" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9cd94358-38e9-4d29-9e66-bf6c6b554998" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "r1", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9ba59e34-c44a-4387-8abb-b690dd29857d" + }, + "attachedElementGuid" : { + "value" : "9cd94358-38e9-4d29-9e66-bf6c6b554998" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 180 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9ba59e34-c44a-4387-8abb-b690dd29857d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9ba59e34-c44a-4387-8abb-b690dd29857d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 0, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "9ba59e34-c44a-4387-8abb-b690dd29857d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 0, + "trackEndTime" : 3, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "9ba59e34-c44a-4387-8abb-b690dd29857d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "010cd541-b165-4238-9082-a81cc700bd03" + }, + "attachedElementGuid" : { + "value" : "9ba59e34-c44a-4387-8abb-b690dd29857d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -3, + "y" : 30, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "010cd541-b165-4238-9082-a81cc700bd03" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "010cd541-b165-4238-9082-a81cc700bd03" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "010cd541-b165-4238-9082-a81cc700bd03" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "52c684e0-f11b-49d4-b030-31695ef1c0b1" + }, + "attachedElementGuid" : { + "value" : "9ba59e34-c44a-4387-8abb-b690dd29857d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "52c684e0-f11b-49d4-b030-31695ef1c0b1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "52c684e0-f11b-49d4-b030-31695ef1c0b1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "52c684e0-f11b-49d4-b030-31695ef1c0b1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ParticleTracker_BM,Assembly-CSharp", + "prewarm" : false, + "playTime" : 97, + "stopTime" : 109, + "is3D" : true, + "width" : 40, + "extendDirection" : { + "x" : 2, + "y" : 0, + "z" : 8 + }, + "density" : 50, + "lifeTime" : 3, + "isAutoOrient" : false, + "particleRotation" : { + "x" : 0, + "y" : 0, + "z" : -10 + }, + "materialThemeBundleName" : "basic", + "materialName" : "Basic_Track_Segments", + "elementName" : "New Particle Tracker", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c88477b5-6e6a-4c70-81c7-397daf4fc565" + }, + "attachedElementGuid" : { + "value" : "9ba59e34-c44a-4387-8abb-b690dd29857d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0.3858937, + "g" : 0.4940961, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "c88477b5-6e6a-4c70-81c7-397daf4fc565" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "r2", + "tags" : [ + + ], + "elementGuid" : { + "value" : "149eb159-4265-400d-85c3-00bb213a5a04" + }, + "attachedElementGuid" : { + "value" : "9cd94358-38e9-4d29-9e66-bf6c6b554998" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 540 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "149eb159-4265-400d-85c3-00bb213a5a04" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "149eb159-4265-400d-85c3-00bb213a5a04" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 0, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "149eb159-4265-400d-85c3-00bb213a5a04" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 0, + "trackEndTime" : 3, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "149eb159-4265-400d-85c3-00bb213a5a04" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "705219c4-763a-4f54-915b-edbf24c1a5b5" + }, + "attachedElementGuid" : { + "value" : "149eb159-4265-400d-85c3-00bb213a5a04" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -3, + "y" : 30, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "705219c4-763a-4f54-915b-edbf24c1a5b5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "705219c4-763a-4f54-915b-edbf24c1a5b5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "705219c4-763a-4f54-915b-edbf24c1a5b5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "54385703-d4dc-403d-9c30-12d7e1ee6eec" + }, + "attachedElementGuid" : { + "value" : "149eb159-4265-400d-85c3-00bb213a5a04" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "54385703-d4dc-403d-9c30-12d7e1ee6eec" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "54385703-d4dc-403d-9c30-12d7e1ee6eec" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "54385703-d4dc-403d-9c30-12d7e1ee6eec" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ParticleTracker_BM,Assembly-CSharp", + "prewarm" : false, + "playTime" : 105, + "stopTime" : 117, + "is3D" : true, + "width" : 40, + "extendDirection" : { + "x" : 2, + "y" : 0, + "z" : 8 + }, + "density" : 50, + "lifeTime" : 3, + "isAutoOrient" : false, + "particleRotation" : { + "x" : 0, + "y" : 0, + "z" : -10 + }, + "materialThemeBundleName" : "basic", + "materialName" : "Basic_Track_Segments", + "elementName" : "New Particle Tracker", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a4586723-0e66-441a-a498-7fadb821aa63" + }, + "attachedElementGuid" : { + "value" : "149eb159-4265-400d-85c3-00bb213a5a04" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0.3858937, + "g" : 0.4940961, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "a4586723-0e66-441a-a498-7fadb821aa63" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "r3", + "tags" : [ + + ], + "elementGuid" : { + "value" : "92d09dbd-f5df-4a7f-858c-4d2c94f6d95b" + }, + "attachedElementGuid" : { + "value" : "9cd94358-38e9-4d29-9e66-bf6c6b554998" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 900 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "92d09dbd-f5df-4a7f-858c-4d2c94f6d95b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "92d09dbd-f5df-4a7f-858c-4d2c94f6d95b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 0, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "92d09dbd-f5df-4a7f-858c-4d2c94f6d95b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 0, + "trackEndTime" : 3, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "92d09dbd-f5df-4a7f-858c-4d2c94f6d95b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "296a57f4-0b4a-426a-9cdb-b2ecf7ff527a" + }, + "attachedElementGuid" : { + "value" : "92d09dbd-f5df-4a7f-858c-4d2c94f6d95b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -3, + "y" : 30, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "296a57f4-0b4a-426a-9cdb-b2ecf7ff527a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "296a57f4-0b4a-426a-9cdb-b2ecf7ff527a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "296a57f4-0b4a-426a-9cdb-b2ecf7ff527a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0e0e4b7c-44d1-4bc1-8ac6-449b4d514ce4" + }, + "attachedElementGuid" : { + "value" : "92d09dbd-f5df-4a7f-858c-4d2c94f6d95b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0e0e4b7c-44d1-4bc1-8ac6-449b4d514ce4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0e0e4b7c-44d1-4bc1-8ac6-449b4d514ce4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0e0e4b7c-44d1-4bc1-8ac6-449b4d514ce4" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ParticleTracker_BM,Assembly-CSharp", + "prewarm" : false, + "playTime" : 113, + "stopTime" : 125, + "is3D" : true, + "width" : 40, + "extendDirection" : { + "x" : 2, + "y" : 0, + "z" : 8 + }, + "density" : 50, + "lifeTime" : 3, + "isAutoOrient" : false, + "particleRotation" : { + "x" : 0, + "y" : 0, + "z" : -10 + }, + "materialThemeBundleName" : "basic", + "materialName" : "Basic_Track_Segments", + "elementName" : "New Particle Tracker", + "tags" : [ + + ], + "elementGuid" : { + "value" : "67268a99-2891-47c1-8908-e8441e1d59b9" + }, + "attachedElementGuid" : { + "value" : "92d09dbd-f5df-4a7f-858c-4d2c94f6d95b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0.3858937, + "g" : 0.4940961, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "67268a99-2891-47c1-8908-e8441e1d59b9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "r4", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d0db23a8-d674-44f6-ba45-6c4ff041f178" + }, + "attachedElementGuid" : { + "value" : "9cd94358-38e9-4d29-9e66-bf6c6b554998" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 1260 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d0db23a8-d674-44f6-ba45-6c4ff041f178" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d0db23a8-d674-44f6-ba45-6c4ff041f178" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 0, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "d0db23a8-d674-44f6-ba45-6c4ff041f178" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 0, + "trackEndTime" : 3, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "d0db23a8-d674-44f6-ba45-6c4ff041f178" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "196f8699-89ea-4418-a8d5-a2844dca205b" + }, + "attachedElementGuid" : { + "value" : "d0db23a8-d674-44f6-ba45-6c4ff041f178" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -3, + "y" : 30, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "196f8699-89ea-4418-a8d5-a2844dca205b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "196f8699-89ea-4418-a8d5-a2844dca205b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "196f8699-89ea-4418-a8d5-a2844dca205b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "59db6103-80e3-4ef9-a7ab-a9f7b02b4c51" + }, + "attachedElementGuid" : { + "value" : "d0db23a8-d674-44f6-ba45-6c4ff041f178" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "59db6103-80e3-4ef9-a7ab-a9f7b02b4c51" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "59db6103-80e3-4ef9-a7ab-a9f7b02b4c51" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "59db6103-80e3-4ef9-a7ab-a9f7b02b4c51" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ParticleTracker_BM,Assembly-CSharp", + "prewarm" : false, + "playTime" : 121, + "stopTime" : 133, + "is3D" : true, + "width" : 40, + "extendDirection" : { + "x" : 2, + "y" : 0, + "z" : 8 + }, + "density" : 50, + "lifeTime" : 3, + "isAutoOrient" : false, + "particleRotation" : { + "x" : 0, + "y" : 0, + "z" : -10 + }, + "materialThemeBundleName" : "basic", + "materialName" : "Basic_Track_Segments", + "elementName" : "New Particle Tracker", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d2b5eb0c-1fa3-4358-8883-712c13445df7" + }, + "attachedElementGuid" : { + "value" : "d0db23a8-d674-44f6-ba45-6c4ff041f178" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0.3858937, + "g" : 0.4940961, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "d2b5eb0c-1fa3-4358-8883-712c13445df7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 52.2225533, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9c787913-ebe9-4710-ac36-7b0644de502e" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9c787913-ebe9-4710-ac36-7b0644de502e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "9c787913-ebe9-4710-ac36-7b0644de502e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "9c787913-ebe9-4710-ac36-7b0644de502e" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c434fad9-de31-4621-ac8e-b3a041a9851d" + }, + "attachedElementGuid" : { + "value" : "9c787913-ebe9-4710-ac36-7b0644de502e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c434fad9-de31-4621-ac8e-b3a041a9851d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c434fad9-de31-4621-ac8e-b3a041a9851d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c434fad9-de31-4621-ac8e-b3a041a9851d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "c434fad9-de31-4621-ac8e-b3a041a9851d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Hold_BM,Assembly-CSharp", + "holdEndTime" : 53.4600563, + "exactJudgeTime" : 53.1300545, + "elementName" : "New Hold", + "tags" : [ + + ], + "elementGuid" : { + "value" : "03e79927-15c1-4e55-99c2-3be91047917c" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "03e79927-15c1-4e55-99c2-3be91047917c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "03e79927-15c1-4e55-99c2-3be91047917c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "03e79927-15c1-4e55-99c2-3be91047917c" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisualHold_BM,Assembly-CSharp", + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualHold", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b011dac3-27fa-4193-80bf-a0d95210477b" + }, + "attachedElementGuid" : { + "value" : "03e79927-15c1-4e55-99c2-3be91047917c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b011dac3-27fa-4193-80bf-a0d95210477b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b011dac3-27fa-4193-80bf-a0d95210477b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b011dac3-27fa-4193-80bf-a0d95210477b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExtend_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.5 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteHoldingBreath_BM,Assembly-CSharp", + "effectTime" : 0.330001831 + } + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "b011dac3-27fa-4193-80bf-a0d95210477b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 61.3800621, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "709f809c-d91a-4936-a641-aff468386e27" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "709f809c-d91a-4936-a641-aff468386e27" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "709f809c-d91a-4936-a641-aff468386e27" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "709f809c-d91a-4936-a641-aff468386e27" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b84a7182-a34f-4c6b-8158-11bf25f04431" + }, + "attachedElementGuid" : { + "value" : "709f809c-d91a-4936-a641-aff468386e27" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b84a7182-a34f-4c6b-8158-11bf25f04431" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b84a7182-a34f-4c6b-8158-11bf25f04431" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b84a7182-a34f-4c6b-8158-11bf25f04431" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "b84a7182-a34f-4c6b-8158-11bf25f04431" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 62.2050629, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6dab11b3-fd05-4595-814e-4787b97f0531" + }, + "attachedElementGuid" : { + "value" : "e77bbc70-fcdd-4212-9415-f60b37ee8281" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6dab11b3-fd05-4595-814e-4787b97f0531" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "6dab11b3-fd05-4595-814e-4787b97f0531" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "6dab11b3-fd05-4595-814e-4787b97f0531" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8f2c8825-3a5e-4078-bbe0-106e737d8adc" + }, + "attachedElementGuid" : { + "value" : "6dab11b3-fd05-4595-814e-4787b97f0531" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8f2c8825-3a5e-4078-bbe0-106e737d8adc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8f2c8825-3a5e-4078-bbe0-106e737d8adc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8f2c8825-3a5e-4078-bbe0-106e737d8adc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "8f2c8825-3a5e-4078-bbe0-106e737d8adc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 62.3700638, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fb100cb5-b902-48f4-8f51-ad9aed2d4909" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fb100cb5-b902-48f4-8f51-ad9aed2d4909" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "fb100cb5-b902-48f4-8f51-ad9aed2d4909" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "fb100cb5-b902-48f4-8f51-ad9aed2d4909" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c0ac2644-cfc3-4f77-a10f-6d84d3149824" + }, + "attachedElementGuid" : { + "value" : "fb100cb5-b902-48f4-8f51-ad9aed2d4909" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c0ac2644-cfc3-4f77-a10f-6d84d3149824" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c0ac2644-cfc3-4f77-a10f-6d84d3149824" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c0ac2644-cfc3-4f77-a10f-6d84d3149824" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "c0ac2644-cfc3-4f77-a10f-6d84d3149824" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 62.5350647, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "790f3221-bc04-4e00-a847-cc865e799a0f" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "790f3221-bc04-4e00-a847-cc865e799a0f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "790f3221-bc04-4e00-a847-cc865e799a0f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "790f3221-bc04-4e00-a847-cc865e799a0f" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4d2ae337-0e0f-4621-b18b-76ff8a2bff57" + }, + "attachedElementGuid" : { + "value" : "790f3221-bc04-4e00-a847-cc865e799a0f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4d2ae337-0e0f-4621-b18b-76ff8a2bff57" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4d2ae337-0e0f-4621-b18b-76ff8a2bff57" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4d2ae337-0e0f-4621-b18b-76ff8a2bff57" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "4d2ae337-0e0f-4621-b18b-76ff8a2bff57" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 62.7000656, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "927b3629-d9e2-4da2-abef-11b956f7c5c8" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "927b3629-d9e2-4da2-abef-11b956f7c5c8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "927b3629-d9e2-4da2-abef-11b956f7c5c8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "927b3629-d9e2-4da2-abef-11b956f7c5c8" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8f866c2a-f9b3-4985-8c42-a76e54acc953" + }, + "attachedElementGuid" : { + "value" : "927b3629-d9e2-4da2-abef-11b956f7c5c8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8f866c2a-f9b3-4985-8c42-a76e54acc953" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8f866c2a-f9b3-4985-8c42-a76e54acc953" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8f866c2a-f9b3-4985-8c42-a76e54acc953" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "8f866c2a-f9b3-4985-8c42-a76e54acc953" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 63.1398735, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5377ff7b-d11f-4082-88e3-a35df091c2b9" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5377ff7b-d11f-4082-88e3-a35df091c2b9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "5377ff7b-d11f-4082-88e3-a35df091c2b9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "5377ff7b-d11f-4082-88e3-a35df091c2b9" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cd30aaf7-035b-4f46-82c0-ec78aaa31dd3" + }, + "attachedElementGuid" : { + "value" : "5377ff7b-d11f-4082-88e3-a35df091c2b9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "cd30aaf7-035b-4f46-82c0-ec78aaa31dd3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "cd30aaf7-035b-4f46-82c0-ec78aaa31dd3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "cd30aaf7-035b-4f46-82c0-ec78aaa31dd3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "cd30aaf7-035b-4f46-82c0-ec78aaa31dd3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 63.24987, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "43122b15-9c5f-4c19-adea-f6573b011f26" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "43122b15-9c5f-4c19-adea-f6573b011f26" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "43122b15-9c5f-4c19-adea-f6573b011f26" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "43122b15-9c5f-4c19-adea-f6573b011f26" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6d436e2d-da7e-4c3a-ba6c-57dd0f5193bc" + }, + "attachedElementGuid" : { + "value" : "43122b15-9c5f-4c19-adea-f6573b011f26" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6d436e2d-da7e-4c3a-ba6c-57dd0f5193bc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6d436e2d-da7e-4c3a-ba6c-57dd0f5193bc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6d436e2d-da7e-4c3a-ba6c-57dd0f5193bc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "6d436e2d-da7e-4c3a-ba6c-57dd0f5193bc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 63.35987, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "449bc10a-e5bf-4958-992a-a1411b2de7ae" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "449bc10a-e5bf-4958-992a-a1411b2de7ae" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "449bc10a-e5bf-4958-992a-a1411b2de7ae" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "449bc10a-e5bf-4958-992a-a1411b2de7ae" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6d78ec6c-b755-47e4-a7ac-fa86c35781e5" + }, + "attachedElementGuid" : { + "value" : "449bc10a-e5bf-4958-992a-a1411b2de7ae" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6d78ec6c-b755-47e4-a7ac-fa86c35781e5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6d78ec6c-b755-47e4-a7ac-fa86c35781e5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6d78ec6c-b755-47e4-a7ac-fa86c35781e5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "6d78ec6c-b755-47e4-a7ac-fa86c35781e5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 64.67985, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7fa0aa6f-e0c4-4d35-af6c-28805423458b" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7fa0aa6f-e0c4-4d35-af6c-28805423458b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "7fa0aa6f-e0c4-4d35-af6c-28805423458b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "7fa0aa6f-e0c4-4d35-af6c-28805423458b" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "af960a48-8bcf-4971-947b-79a06d4ba74d" + }, + "attachedElementGuid" : { + "value" : "7fa0aa6f-e0c4-4d35-af6c-28805423458b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "af960a48-8bcf-4971-947b-79a06d4ba74d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "af960a48-8bcf-4971-947b-79a06d4ba74d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "af960a48-8bcf-4971-947b-79a06d4ba74d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "af960a48-8bcf-4971-947b-79a06d4ba74d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 65.01, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b024b43a-2c59-4943-9626-9280da7569ae" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b024b43a-2c59-4943-9626-9280da7569ae" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "b024b43a-2c59-4943-9626-9280da7569ae" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "b024b43a-2c59-4943-9626-9280da7569ae" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0056a402-1059-435b-aa72-0fc8da446cff" + }, + "attachedElementGuid" : { + "value" : "b024b43a-2c59-4943-9626-9280da7569ae" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0056a402-1059-435b-aa72-0fc8da446cff" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0056a402-1059-435b-aa72-0fc8da446cff" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0056a402-1059-435b-aa72-0fc8da446cff" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "0056a402-1059-435b-aa72-0fc8da446cff" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 65.01, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9881c2d1-bdee-4de5-a478-fa4216025e85" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9881c2d1-bdee-4de5-a478-fa4216025e85" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "9881c2d1-bdee-4de5-a478-fa4216025e85" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "9881c2d1-bdee-4de5-a478-fa4216025e85" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ef4b2c21-59d4-4d8e-be2a-eb157f38769a" + }, + "attachedElementGuid" : { + "value" : "9881c2d1-bdee-4de5-a478-fa4216025e85" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ef4b2c21-59d4-4d8e-be2a-eb157f38769a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ef4b2c21-59d4-4d8e-be2a-eb157f38769a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ef4b2c21-59d4-4d8e-be2a-eb157f38769a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "ef4b2c21-59d4-4d8e-be2a-eb157f38769a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 65.340065, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0750b664-3dc1-47fc-a815-0f2021a2c67d" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0750b664-3dc1-47fc-a815-0f2021a2c67d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "0750b664-3dc1-47fc-a815-0f2021a2c67d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "0750b664-3dc1-47fc-a815-0f2021a2c67d" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0717a26b-a9ed-4239-a951-7b3b2ce23736" + }, + "attachedElementGuid" : { + "value" : "0750b664-3dc1-47fc-a815-0f2021a2c67d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0717a26b-a9ed-4239-a951-7b3b2ce23736" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0717a26b-a9ed-4239-a951-7b3b2ce23736" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0717a26b-a9ed-4239-a951-7b3b2ce23736" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "0717a26b-a9ed-4239-a951-7b3b2ce23736" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 65.340065, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "037c7969-5ae7-4849-84f2-904188c1b247" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "037c7969-5ae7-4849-84f2-904188c1b247" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "037c7969-5ae7-4849-84f2-904188c1b247" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "037c7969-5ae7-4849-84f2-904188c1b247" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7ea6943c-4d23-454a-9808-3d887157931a" + }, + "attachedElementGuid" : { + "value" : "037c7969-5ae7-4849-84f2-904188c1b247" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7ea6943c-4d23-454a-9808-3d887157931a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7ea6943c-4d23-454a-9808-3d887157931a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "7ea6943c-4d23-454a-9808-3d887157931a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "7ea6943c-4d23-454a-9808-3d887157931a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 65.99983, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6779a2cc-fb62-47f8-9642-34d015a683ea" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6779a2cc-fb62-47f8-9642-34d015a683ea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "6779a2cc-fb62-47f8-9642-34d015a683ea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "6779a2cc-fb62-47f8-9642-34d015a683ea" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "dc3a6e45-db9f-459f-b07b-79ceb09497e0" + }, + "attachedElementGuid" : { + "value" : "6779a2cc-fb62-47f8-9642-34d015a683ea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "dc3a6e45-db9f-459f-b07b-79ceb09497e0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "dc3a6e45-db9f-459f-b07b-79ceb09497e0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "dc3a6e45-db9f-459f-b07b-79ceb09497e0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "dc3a6e45-db9f-459f-b07b-79ceb09497e0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 66.90757, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "95028c24-73ba-45ef-823a-98a2ef637cfe" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "95028c24-73ba-45ef-823a-98a2ef637cfe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "95028c24-73ba-45ef-823a-98a2ef637cfe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "95028c24-73ba-45ef-823a-98a2ef637cfe" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "842082dd-75d2-49fe-85d9-cba3e936e05a" + }, + "attachedElementGuid" : { + "value" : "95028c24-73ba-45ef-823a-98a2ef637cfe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "842082dd-75d2-49fe-85d9-cba3e936e05a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "842082dd-75d2-49fe-85d9-cba3e936e05a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "842082dd-75d2-49fe-85d9-cba3e936e05a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "842082dd-75d2-49fe-85d9-cba3e936e05a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 66.99007, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3204a42a-8bcc-44b5-a03f-97907326ee2a" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3204a42a-8bcc-44b5-a03f-97907326ee2a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "3204a42a-8bcc-44b5-a03f-97907326ee2a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "3204a42a-8bcc-44b5-a03f-97907326ee2a" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5c6f8392-78db-4d30-b18e-08fdfaaeaee3" + }, + "attachedElementGuid" : { + "value" : "3204a42a-8bcc-44b5-a03f-97907326ee2a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5c6f8392-78db-4d30-b18e-08fdfaaeaee3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5c6f8392-78db-4d30-b18e-08fdfaaeaee3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5c6f8392-78db-4d30-b18e-08fdfaaeaee3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "5c6f8392-78db-4d30-b18e-08fdfaaeaee3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Flick_BM,Assembly-CSharp", + "availableFlickDirections" : [ + + ], + "exactJudgeTime" : 68.64007, + "elementName" : "New Flick", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c6defe67-7c82-4489-88f4-4ffac8219274" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c6defe67-7c82-4489-88f4-4ffac8219274" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "c6defe67-7c82-4489-88f4-4ffac8219274" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "c6defe67-7c82-4489-88f4-4ffac8219274" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualFlick", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "de41303c-380c-46ca-99c5-7c668047923e" + }, + "attachedElementGuid" : { + "value" : "c6defe67-7c82-4489-88f4-4ffac8219274" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : -45.8 + }, + "originalScale" : { + "x" : 1.7, + "y" : 1.7, + "z" : 1.7 + }, + "attachedElementGuid" : { + "value" : "de41303c-380c-46ca-99c5-7c668047923e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "de41303c-380c-46ca-99c5-7c668047923e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "de41303c-380c-46ca-99c5-7c668047923e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "de41303c-380c-46ca-99c5-7c668047923e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Hold_BM,Assembly-CSharp", + "holdEndTime" : 68.64007, + "exactJudgeTime" : 67.65007, + "elementName" : "New Hold", + "tags" : [ + + ], + "elementGuid" : { + "value" : "614bed3b-23c8-4353-be49-eafdf7d5aa2b" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "614bed3b-23c8-4353-be49-eafdf7d5aa2b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "614bed3b-23c8-4353-be49-eafdf7d5aa2b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "614bed3b-23c8-4353-be49-eafdf7d5aa2b" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisualHold_BM,Assembly-CSharp", + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualHold", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "33e420d7-8f4b-45be-a2a8-fcf2615510bd" + }, + "attachedElementGuid" : { + "value" : "614bed3b-23c8-4353-be49-eafdf7d5aa2b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "33e420d7-8f4b-45be-a2a8-fcf2615510bd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "33e420d7-8f4b-45be-a2a8-fcf2615510bd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "33e420d7-8f4b-45be-a2a8-fcf2615510bd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExtend_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.5 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteHoldingBreath_BM,Assembly-CSharp", + "effectTime" : 0.989997864 + } + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "33e420d7-8f4b-45be-a2a8-fcf2615510bd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Flick_BM,Assembly-CSharp", + "availableFlickDirections" : [ + + ], + "exactJudgeTime" : 70.62007, + "elementName" : "New Flick", + "tags" : [ + + ], + "elementGuid" : { + "value" : "99d578c4-6be8-416b-b8e9-17df9cd515e2" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "99d578c4-6be8-416b-b8e9-17df9cd515e2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "99d578c4-6be8-416b-b8e9-17df9cd515e2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "99d578c4-6be8-416b-b8e9-17df9cd515e2" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualFlick", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fa2e304e-0d90-4e9e-9bed-c9cb2286e4dc" + }, + "attachedElementGuid" : { + "value" : "99d578c4-6be8-416b-b8e9-17df9cd515e2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 45 + }, + "originalScale" : { + "x" : 1.7, + "y" : 1.7, + "z" : 1.7 + }, + "attachedElementGuid" : { + "value" : "fa2e304e-0d90-4e9e-9bed-c9cb2286e4dc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fa2e304e-0d90-4e9e-9bed-c9cb2286e4dc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "fa2e304e-0d90-4e9e-9bed-c9cb2286e4dc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "fa2e304e-0d90-4e9e-9bed-c9cb2286e4dc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Hold_BM,Assembly-CSharp", + "holdEndTime" : 70.95007, + "exactJudgeTime" : 70.62007, + "elementName" : "New Hold", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b351d3f7-dbe3-4ce9-824d-b13e86e97253" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b351d3f7-dbe3-4ce9-824d-b13e86e97253" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "b351d3f7-dbe3-4ce9-824d-b13e86e97253" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "b351d3f7-dbe3-4ce9-824d-b13e86e97253" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisualHold_BM,Assembly-CSharp", + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualHold", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4369d367-3809-4cb3-aa88-bfe9061dc926" + }, + "attachedElementGuid" : { + "value" : "b351d3f7-dbe3-4ce9-824d-b13e86e97253" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4369d367-3809-4cb3-aa88-bfe9061dc926" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4369d367-3809-4cb3-aa88-bfe9061dc926" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4369d367-3809-4cb3-aa88-bfe9061dc926" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExtend_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.5 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteHoldingBreath_BM,Assembly-CSharp", + "effectTime" : 0.330001831 + } + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "4369d367-3809-4cb3-aa88-bfe9061dc926" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Hold_BM,Assembly-CSharp", + "holdEndTime" : 71.2800751, + "exactJudgeTime" : 70.95007, + "elementName" : "New Hold", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2bcbed94-31d9-4f8d-a89c-8252f27c42f8" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2bcbed94-31d9-4f8d-a89c-8252f27c42f8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "2bcbed94-31d9-4f8d-a89c-8252f27c42f8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "2bcbed94-31d9-4f8d-a89c-8252f27c42f8" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisualHold_BM,Assembly-CSharp", + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualHold", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "90fa0d1d-c6ab-4396-901b-ea4b9dcbfb1d" + }, + "attachedElementGuid" : { + "value" : "2bcbed94-31d9-4f8d-a89c-8252f27c42f8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "90fa0d1d-c6ab-4396-901b-ea4b9dcbfb1d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "90fa0d1d-c6ab-4396-901b-ea4b9dcbfb1d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "90fa0d1d-c6ab-4396-901b-ea4b9dcbfb1d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExtend_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.5 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteHoldingBreath_BM,Assembly-CSharp", + "effectTime" : 0.330001831 + } + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "90fa0d1d-c6ab-4396-901b-ea4b9dcbfb1d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 71.2800751, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a8e7552a-a3b3-4e4d-a8fa-367d8b130488" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a8e7552a-a3b3-4e4d-a8fa-367d8b130488" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "a8e7552a-a3b3-4e4d-a8fa-367d8b130488" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "a8e7552a-a3b3-4e4d-a8fa-367d8b130488" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a734d78a-4136-4b9f-a8bd-de0e0df7cc3a" + }, + "attachedElementGuid" : { + "value" : "a8e7552a-a3b3-4e4d-a8fa-367d8b130488" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a734d78a-4136-4b9f-a8bd-de0e0df7cc3a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a734d78a-4136-4b9f-a8bd-de0e0df7cc3a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a734d78a-4136-4b9f-a8bd-de0e0df7cc3a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "a734d78a-4136-4b9f-a8bd-de0e0df7cc3a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 71.445076, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "40784e37-f7a6-4ed1-8bed-d8194b5f6ca5" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "40784e37-f7a6-4ed1-8bed-d8194b5f6ca5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "40784e37-f7a6-4ed1-8bed-d8194b5f6ca5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "40784e37-f7a6-4ed1-8bed-d8194b5f6ca5" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9e4d7331-114e-457c-9571-f0dd8ddfaa16" + }, + "attachedElementGuid" : { + "value" : "40784e37-f7a6-4ed1-8bed-d8194b5f6ca5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9e4d7331-114e-457c-9571-f0dd8ddfaa16" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9e4d7331-114e-457c-9571-f0dd8ddfaa16" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "9e4d7331-114e-457c-9571-f0dd8ddfaa16" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "9e4d7331-114e-457c-9571-f0dd8ddfaa16" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Hold_BM,Assembly-CSharp", + "holdEndTime" : 72.11008, + "exactJudgeTime" : 71.61008, + "elementName" : "New Hold", + "tags" : [ + + ], + "elementGuid" : { + "value" : "830b9f60-de51-432c-a9c3-b79e12c2cec6" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "830b9f60-de51-432c-a9c3-b79e12c2cec6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "830b9f60-de51-432c-a9c3-b79e12c2cec6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "830b9f60-de51-432c-a9c3-b79e12c2cec6" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisualHold_BM,Assembly-CSharp", + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualHold", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0e5fc216-6519-4256-bb6f-bff6a3fa8deb" + }, + "attachedElementGuid" : { + "value" : "830b9f60-de51-432c-a9c3-b79e12c2cec6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0e5fc216-6519-4256-bb6f-bff6a3fa8deb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0e5fc216-6519-4256-bb6f-bff6a3fa8deb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0e5fc216-6519-4256-bb6f-bff6a3fa8deb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExtend_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.5 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteHoldingBreath_BM,Assembly-CSharp", + "effectTime" : 0.5 + } + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "0e5fc216-6519-4256-bb6f-bff6a3fa8deb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 71.77508, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5dd14143-a2b9-43b2-b581-b306ec17e122" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5dd14143-a2b9-43b2-b581-b306ec17e122" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "5dd14143-a2b9-43b2-b581-b306ec17e122" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "5dd14143-a2b9-43b2-b581-b306ec17e122" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d13a21f5-d1bc-40c4-a55e-fe0118e383a7" + }, + "attachedElementGuid" : { + "value" : "5dd14143-a2b9-43b2-b581-b306ec17e122" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d13a21f5-d1bc-40c4-a55e-fe0118e383a7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d13a21f5-d1bc-40c4-a55e-fe0118e383a7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d13a21f5-d1bc-40c4-a55e-fe0118e383a7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d13a21f5-d1bc-40c4-a55e-fe0118e383a7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 71.8575745, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "347f6ebc-5998-4258-9596-eda422d8aa54" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "347f6ebc-5998-4258-9596-eda422d8aa54" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "347f6ebc-5998-4258-9596-eda422d8aa54" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "347f6ebc-5998-4258-9596-eda422d8aa54" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5a617749-0f5c-4aaa-9210-a047d0932adf" + }, + "attachedElementGuid" : { + "value" : "347f6ebc-5998-4258-9596-eda422d8aa54" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5a617749-0f5c-4aaa-9210-a047d0932adf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5a617749-0f5c-4aaa-9210-a047d0932adf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5a617749-0f5c-4aaa-9210-a047d0932adf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "5a617749-0f5c-4aaa-9210-a047d0932adf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 71.94007, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5420c498-c4b7-4743-9ce2-1a31cde8f1ef" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5420c498-c4b7-4743-9ce2-1a31cde8f1ef" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "5420c498-c4b7-4743-9ce2-1a31cde8f1ef" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "5420c498-c4b7-4743-9ce2-1a31cde8f1ef" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d63d19ba-b3be-4f3f-ba22-1cf1d429c9f3" + }, + "attachedElementGuid" : { + "value" : "5420c498-c4b7-4743-9ce2-1a31cde8f1ef" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d63d19ba-b3be-4f3f-ba22-1cf1d429c9f3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d63d19ba-b3be-4f3f-ba22-1cf1d429c9f3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d63d19ba-b3be-4f3f-ba22-1cf1d429c9f3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d63d19ba-b3be-4f3f-ba22-1cf1d429c9f3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 72.04974, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9ba7512b-ed86-4ff4-b864-13e9bcf40cf0" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9ba7512b-ed86-4ff4-b864-13e9bcf40cf0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "9ba7512b-ed86-4ff4-b864-13e9bcf40cf0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "9ba7512b-ed86-4ff4-b864-13e9bcf40cf0" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c6c888bd-ef93-4c24-9118-8ed8e8ed6e16" + }, + "attachedElementGuid" : { + "value" : "9ba7512b-ed86-4ff4-b864-13e9bcf40cf0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c6c888bd-ef93-4c24-9118-8ed8e8ed6e16" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c6c888bd-ef93-4c24-9118-8ed8e8ed6e16" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c6c888bd-ef93-4c24-9118-8ed8e8ed6e16" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "c6c888bd-ef93-4c24-9118-8ed8e8ed6e16" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 72.1597443, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8566cbdd-dae4-4e4c-9f6d-763845cf7324" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8566cbdd-dae4-4e4c-9f6d-763845cf7324" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "8566cbdd-dae4-4e4c-9f6d-763845cf7324" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "8566cbdd-dae4-4e4c-9f6d-763845cf7324" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "22f57975-aee0-4b88-ae61-9276683f0f38" + }, + "attachedElementGuid" : { + "value" : "8566cbdd-dae4-4e4c-9f6d-763845cf7324" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "22f57975-aee0-4b88-ae61-9276683f0f38" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "22f57975-aee0-4b88-ae61-9276683f0f38" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "22f57975-aee0-4b88-ae61-9276683f0f38" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "22f57975-aee0-4b88-ae61-9276683f0f38" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 72.27, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "73dfc99d-be51-4d09-bc6a-811dbadaea15" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "73dfc99d-be51-4d09-bc6a-811dbadaea15" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "73dfc99d-be51-4d09-bc6a-811dbadaea15" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "73dfc99d-be51-4d09-bc6a-811dbadaea15" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "539d5318-e1b7-4f78-8c45-17c931103d14" + }, + "attachedElementGuid" : { + "value" : "73dfc99d-be51-4d09-bc6a-811dbadaea15" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "539d5318-e1b7-4f78-8c45-17c931103d14" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "539d5318-e1b7-4f78-8c45-17c931103d14" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "539d5318-e1b7-4f78-8c45-17c931103d14" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "539d5318-e1b7-4f78-8c45-17c931103d14" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 72.27, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3d0b09c1-f140-4eb0-a317-9ca678759d6e" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3d0b09c1-f140-4eb0-a317-9ca678759d6e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "3d0b09c1-f140-4eb0-a317-9ca678759d6e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "3d0b09c1-f140-4eb0-a317-9ca678759d6e" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e56406cc-20a0-4cbb-95fd-540103d9a3d8" + }, + "attachedElementGuid" : { + "value" : "3d0b09c1-f140-4eb0-a317-9ca678759d6e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e56406cc-20a0-4cbb-95fd-540103d9a3d8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e56406cc-20a0-4cbb-95fd-540103d9a3d8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e56406cc-20a0-4cbb-95fd-540103d9a3d8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "e56406cc-20a0-4cbb-95fd-540103d9a3d8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 72.4350739, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5a26dcb6-31b3-4cb3-bae3-7fd1477ab686" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5a26dcb6-31b3-4cb3-bae3-7fd1477ab686" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "5a26dcb6-31b3-4cb3-bae3-7fd1477ab686" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "5a26dcb6-31b3-4cb3-bae3-7fd1477ab686" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "70ca6e0d-1985-4f68-b4d8-b37e1ac94a8b" + }, + "attachedElementGuid" : { + "value" : "5a26dcb6-31b3-4cb3-bae3-7fd1477ab686" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "70ca6e0d-1985-4f68-b4d8-b37e1ac94a8b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "70ca6e0d-1985-4f68-b4d8-b37e1ac94a8b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "70ca6e0d-1985-4f68-b4d8-b37e1ac94a8b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "70ca6e0d-1985-4f68-b4d8-b37e1ac94a8b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Flick_BM,Assembly-CSharp", + "availableFlickDirections" : [ + + ], + "exactJudgeTime" : 72.6000748, + "elementName" : "New Flick", + "tags" : [ + + ], + "elementGuid" : { + "value" : "59e8c535-099a-4a62-bf36-e333f8a5a29b" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "59e8c535-099a-4a62-bf36-e333f8a5a29b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "59e8c535-099a-4a62-bf36-e333f8a5a29b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "59e8c535-099a-4a62-bf36-e333f8a5a29b" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualFlick", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "546ffd40-e3b5-4c13-9936-8819606a663c" + }, + "attachedElementGuid" : { + "value" : "59e8c535-099a-4a62-bf36-e333f8a5a29b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1.7, + "y" : 1.7, + "z" : 1.7 + }, + "attachedElementGuid" : { + "value" : "546ffd40-e3b5-4c13-9936-8819606a663c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "546ffd40-e3b5-4c13-9936-8819606a663c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "546ffd40-e3b5-4c13-9936-8819606a663c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "546ffd40-e3b5-4c13-9936-8819606a663c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 72.59974, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8166881e-8afc-4bfd-a13e-b202573c1678" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8166881e-8afc-4bfd-a13e-b202573c1678" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "8166881e-8afc-4bfd-a13e-b202573c1678" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "8166881e-8afc-4bfd-a13e-b202573c1678" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fa458608-876d-4993-bd78-b1e6869614e9" + }, + "attachedElementGuid" : { + "value" : "8166881e-8afc-4bfd-a13e-b202573c1678" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "fa458608-876d-4993-bd78-b1e6869614e9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fa458608-876d-4993-bd78-b1e6869614e9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "fa458608-876d-4993-bd78-b1e6869614e9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "fa458608-876d-4993-bd78-b1e6869614e9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 72.7650757, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "030beb06-b18b-44a5-9918-8f28bb407b64" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "030beb06-b18b-44a5-9918-8f28bb407b64" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "030beb06-b18b-44a5-9918-8f28bb407b64" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "030beb06-b18b-44a5-9918-8f28bb407b64" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b04091e4-76b1-43d0-a77f-4d1a61440917" + }, + "attachedElementGuid" : { + "value" : "030beb06-b18b-44a5-9918-8f28bb407b64" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b04091e4-76b1-43d0-a77f-4d1a61440917" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b04091e4-76b1-43d0-a77f-4d1a61440917" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b04091e4-76b1-43d0-a77f-4d1a61440917" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "b04091e4-76b1-43d0-a77f-4d1a61440917" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 73.69972, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "23b725ba-61df-4813-b36e-0f49704fe3fc" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "23b725ba-61df-4813-b36e-0f49704fe3fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "23b725ba-61df-4813-b36e-0f49704fe3fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "23b725ba-61df-4813-b36e-0f49704fe3fc" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c7ef0baa-0c69-4128-a72e-ff9d5e820d03" + }, + "attachedElementGuid" : { + "value" : "23b725ba-61df-4813-b36e-0f49704fe3fc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c7ef0baa-0c69-4128-a72e-ff9d5e820d03" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c7ef0baa-0c69-4128-a72e-ff9d5e820d03" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c7ef0baa-0c69-4128-a72e-ff9d5e820d03" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "c7ef0baa-0c69-4128-a72e-ff9d5e820d03" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 74.57971, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b0ca2d3e-bfb3-4c8a-97e7-c068cf3de99f" + }, + "attachedElementGuid" : { + "value" : "085d1554-5d86-4afd-b415-acd4d70b5bfb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b0ca2d3e-bfb3-4c8a-97e7-c068cf3de99f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "b0ca2d3e-bfb3-4c8a-97e7-c068cf3de99f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "b0ca2d3e-bfb3-4c8a-97e7-c068cf3de99f" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8f778321-51a4-4a11-990a-99e6b1658847" + }, + "attachedElementGuid" : { + "value" : "b0ca2d3e-bfb3-4c8a-97e7-c068cf3de99f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8f778321-51a4-4a11-990a-99e6b1658847" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8f778321-51a4-4a11-990a-99e6b1658847" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8f778321-51a4-4a11-990a-99e6b1658847" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "8f778321-51a4-4a11-990a-99e6b1658847" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 76.56008, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b0d3b41d-d951-41e4-a10c-baa29eb7c364" + }, + "attachedElementGuid" : { + "value" : "0ddce627-6f43-45f1-ab53-0f4005255820" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b0d3b41d-d951-41e4-a10c-baa29eb7c364" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "b0d3b41d-d951-41e4-a10c-baa29eb7c364" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "b0d3b41d-d951-41e4-a10c-baa29eb7c364" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cb1ceae8-9e3c-4cc3-914d-1571aa286aa9" + }, + "attachedElementGuid" : { + "value" : "b0d3b41d-d951-41e4-a10c-baa29eb7c364" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "cb1ceae8-9e3c-4cc3-914d-1571aa286aa9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "cb1ceae8-9e3c-4cc3-914d-1571aa286aa9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "cb1ceae8-9e3c-4cc3-914d-1571aa286aa9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "cb1ceae8-9e3c-4cc3-914d-1571aa286aa9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 76.22968, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c87c5ea4-1114-4fec-ad5d-18a28ab27f2c" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c87c5ea4-1114-4fec-ad5d-18a28ab27f2c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "c87c5ea4-1114-4fec-ad5d-18a28ab27f2c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "c87c5ea4-1114-4fec-ad5d-18a28ab27f2c" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "dd7608eb-e8ab-43c1-8115-ccb067f421fa" + }, + "attachedElementGuid" : { + "value" : "c87c5ea4-1114-4fec-ad5d-18a28ab27f2c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "dd7608eb-e8ab-43c1-8115-ccb067f421fa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "dd7608eb-e8ab-43c1-8115-ccb067f421fa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "dd7608eb-e8ab-43c1-8115-ccb067f421fa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "dd7608eb-e8ab-43c1-8115-ccb067f421fa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 76.33968, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e3d15168-fdde-49fd-88e7-147fa4b7d680" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e3d15168-fdde-49fd-88e7-147fa4b7d680" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "e3d15168-fdde-49fd-88e7-147fa4b7d680" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "e3d15168-fdde-49fd-88e7-147fa4b7d680" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0c67f27b-a215-4d84-a64a-1a63095ae415" + }, + "attachedElementGuid" : { + "value" : "e3d15168-fdde-49fd-88e7-147fa4b7d680" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0c67f27b-a215-4d84-a64a-1a63095ae415" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0c67f27b-a215-4d84-a64a-1a63095ae415" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0c67f27b-a215-4d84-a64a-1a63095ae415" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "0c67f27b-a215-4d84-a64a-1a63095ae415" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 76.4496841, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "00564fa7-ace2-420c-acb3-f3f7d084326f" + }, + "attachedElementGuid" : { + "value" : "55b3e007-94ea-47ac-bcc4-aee6ddb67e75" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "00564fa7-ace2-420c-acb3-f3f7d084326f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "00564fa7-ace2-420c-acb3-f3f7d084326f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "00564fa7-ace2-420c-acb3-f3f7d084326f" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b1103da3-b682-4f53-895f-cc5c6faf4ae5" + }, + "attachedElementGuid" : { + "value" : "00564fa7-ace2-420c-acb3-f3f7d084326f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b1103da3-b682-4f53-895f-cc5c6faf4ae5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b1103da3-b682-4f53-895f-cc5c6faf4ae5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b1103da3-b682-4f53-895f-cc5c6faf4ae5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "b1103da3-b682-4f53-895f-cc5c6faf4ae5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 101.1451, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "13440693-bf4d-4139-bfc2-76882e07da4b" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "13440693-bf4d-4139-bfc2-76882e07da4b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "13440693-bf4d-4139-bfc2-76882e07da4b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "13440693-bf4d-4139-bfc2-76882e07da4b" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "097fa0a9-e9c0-482e-8acc-045e3df1e31e" + }, + "attachedElementGuid" : { + "value" : "13440693-bf4d-4139-bfc2-76882e07da4b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "097fa0a9-e9c0-482e-8acc-045e3df1e31e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "097fa0a9-e9c0-482e-8acc-045e3df1e31e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "097fa0a9-e9c0-482e-8acc-045e3df1e31e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "097fa0a9-e9c0-482e-8acc-045e3df1e31e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 101.310104, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "728ceddf-8b84-45ff-828f-2bd79c78bda2" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "728ceddf-8b84-45ff-828f-2bd79c78bda2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "728ceddf-8b84-45ff-828f-2bd79c78bda2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "728ceddf-8b84-45ff-828f-2bd79c78bda2" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4c44ea02-c418-46ab-91f2-8e1f715983de" + }, + "attachedElementGuid" : { + "value" : "728ceddf-8b84-45ff-828f-2bd79c78bda2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4c44ea02-c418-46ab-91f2-8e1f715983de" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4c44ea02-c418-46ab-91f2-8e1f715983de" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4c44ea02-c418-46ab-91f2-8e1f715983de" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "4c44ea02-c418-46ab-91f2-8e1f715983de" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 103.290108, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "361e2956-5d26-4ef0-abd8-11e4f48e6fbb" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "361e2956-5d26-4ef0-abd8-11e4f48e6fbb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "361e2956-5d26-4ef0-abd8-11e4f48e6fbb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "361e2956-5d26-4ef0-abd8-11e4f48e6fbb" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "074c793b-990d-49a8-8515-ecd176cbcfed" + }, + "attachedElementGuid" : { + "value" : "361e2956-5d26-4ef0-abd8-11e4f48e6fbb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "074c793b-990d-49a8-8515-ecd176cbcfed" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "074c793b-990d-49a8-8515-ecd176cbcfed" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "074c793b-990d-49a8-8515-ecd176cbcfed" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "074c793b-990d-49a8-8515-ecd176cbcfed" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 102.877609, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d008de75-f87e-451e-936c-9ec26f4f7842" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d008de75-f87e-451e-936c-9ec26f4f7842" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "d008de75-f87e-451e-936c-9ec26f4f7842" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "d008de75-f87e-451e-936c-9ec26f4f7842" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "62533296-5d59-4973-b125-49f9e095f450" + }, + "attachedElementGuid" : { + "value" : "d008de75-f87e-451e-936c-9ec26f4f7842" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "62533296-5d59-4973-b125-49f9e095f450" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "62533296-5d59-4973-b125-49f9e095f450" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "62533296-5d59-4973-b125-49f9e095f450" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "62533296-5d59-4973-b125-49f9e095f450" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 104.39019, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d0a7e425-b017-4709-95dd-0f5c3c9f14e2" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d0a7e425-b017-4709-95dd-0f5c3c9f14e2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "d0a7e425-b017-4709-95dd-0f5c3c9f14e2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "d0a7e425-b017-4709-95dd-0f5c3c9f14e2" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "999353dd-c36e-4f37-9c41-13bb474bb41e" + }, + "attachedElementGuid" : { + "value" : "d0a7e425-b017-4709-95dd-0f5c3c9f14e2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "999353dd-c36e-4f37-9c41-13bb474bb41e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "999353dd-c36e-4f37-9c41-13bb474bb41e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "999353dd-c36e-4f37-9c41-13bb474bb41e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "999353dd-c36e-4f37-9c41-13bb474bb41e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 104.5002, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fac43723-df96-4e04-a061-a0e5ebabd0c7" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fac43723-df96-4e04-a061-a0e5ebabd0c7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "fac43723-df96-4e04-a061-a0e5ebabd0c7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "fac43723-df96-4e04-a061-a0e5ebabd0c7" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "aacc114e-98e9-4ffc-b203-5559e141a2c3" + }, + "attachedElementGuid" : { + "value" : "fac43723-df96-4e04-a061-a0e5ebabd0c7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "aacc114e-98e9-4ffc-b203-5559e141a2c3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "aacc114e-98e9-4ffc-b203-5559e141a2c3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "aacc114e-98e9-4ffc-b203-5559e141a2c3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "aacc114e-98e9-4ffc-b203-5559e141a2c3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Flick_BM,Assembly-CSharp", + "availableFlickDirections" : [ + + ], + "exactJudgeTime" : 104.280106, + "elementName" : "New Flick", + "tags" : [ + + ], + "elementGuid" : { + "value" : "eb89dff5-a48d-430c-a968-07fcb2e0879f" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "eb89dff5-a48d-430c-a968-07fcb2e0879f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "eb89dff5-a48d-430c-a968-07fcb2e0879f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "eb89dff5-a48d-430c-a968-07fcb2e0879f" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualFlick", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ba7ca526-091e-4601-8575-24251b7be5f3" + }, + "attachedElementGuid" : { + "value" : "eb89dff5-a48d-430c-a968-07fcb2e0879f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1.7, + "y" : 1.7, + "z" : 1.7 + }, + "attachedElementGuid" : { + "value" : "ba7ca526-091e-4601-8575-24251b7be5f3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ba7ca526-091e-4601-8575-24251b7be5f3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ba7ca526-091e-4601-8575-24251b7be5f3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "ba7ca526-091e-4601-8575-24251b7be5f3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 104.7202, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "36128bf3-c085-4ea5-96f3-4ec84f6bbd1a" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "36128bf3-c085-4ea5-96f3-4ec84f6bbd1a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "36128bf3-c085-4ea5-96f3-4ec84f6bbd1a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "36128bf3-c085-4ea5-96f3-4ec84f6bbd1a" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e6f30b93-1db4-4127-a967-9e1c0a2a8026" + }, + "attachedElementGuid" : { + "value" : "36128bf3-c085-4ea5-96f3-4ec84f6bbd1a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e6f30b93-1db4-4127-a967-9e1c0a2a8026" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e6f30b93-1db4-4127-a967-9e1c0a2a8026" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e6f30b93-1db4-4127-a967-9e1c0a2a8026" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "e6f30b93-1db4-4127-a967-9e1c0a2a8026" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 104.830208, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3962913e-1287-421e-b8f4-23ff1193023a" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3962913e-1287-421e-b8f4-23ff1193023a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "3962913e-1287-421e-b8f4-23ff1193023a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "3962913e-1287-421e-b8f4-23ff1193023a" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d92a1284-4001-4cf0-94f9-076eb3977957" + }, + "attachedElementGuid" : { + "value" : "3962913e-1287-421e-b8f4-23ff1193023a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d92a1284-4001-4cf0-94f9-076eb3977957" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d92a1284-4001-4cf0-94f9-076eb3977957" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d92a1284-4001-4cf0-94f9-076eb3977957" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d92a1284-4001-4cf0-94f9-076eb3977957" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Flick_BM,Assembly-CSharp", + "availableFlickDirections" : [ + + ], + "exactJudgeTime" : 106.260109, + "elementName" : "New Flick", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1bd9f5e4-bb60-465a-b454-db14b27a3e22" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1bd9f5e4-bb60-465a-b454-db14b27a3e22" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 1000 + } + ], + "attachedElementGuid" : { + "value" : "1bd9f5e4-bb60-465a-b454-db14b27a3e22" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "1bd9f5e4-bb60-465a-b454-db14b27a3e22" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualFlick", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f2be92dd-082c-449f-bb4b-b2b18e29fa53" + }, + "attachedElementGuid" : { + "value" : "1bd9f5e4-bb60-465a-b454-db14b27a3e22" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 45 + }, + "originalScale" : { + "x" : 1.7, + "y" : 1.7, + "z" : 1.7 + }, + "attachedElementGuid" : { + "value" : "f2be92dd-082c-449f-bb4b-b2b18e29fa53" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f2be92dd-082c-449f-bb4b-b2b18e29fa53" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f2be92dd-082c-449f-bb4b-b2b18e29fa53" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "f2be92dd-082c-449f-bb4b-b2b18e29fa53" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 106.260254, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f7b7303f-2ce4-4360-9f77-c3400e6b5c1b" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f7b7303f-2ce4-4360-9f77-c3400e6b5c1b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "f7b7303f-2ce4-4360-9f77-c3400e6b5c1b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "f7b7303f-2ce4-4360-9f77-c3400e6b5c1b" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7035ff71-ff63-429f-b5b5-22b390d0a54c" + }, + "attachedElementGuid" : { + "value" : "f7b7303f-2ce4-4360-9f77-c3400e6b5c1b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7035ff71-ff63-429f-b5b5-22b390d0a54c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7035ff71-ff63-429f-b5b5-22b390d0a54c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "7035ff71-ff63-429f-b5b5-22b390d0a54c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "7035ff71-ff63-429f-b5b5-22b390d0a54c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 106.42511, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e3ab43d1-e06a-452a-8854-3ac9ca5af0fd" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e3ab43d1-e06a-452a-8854-3ac9ca5af0fd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "e3ab43d1-e06a-452a-8854-3ac9ca5af0fd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "e3ab43d1-e06a-452a-8854-3ac9ca5af0fd" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0b58ded4-1a0b-4e97-864a-444f1378b937" + }, + "attachedElementGuid" : { + "value" : "e3ab43d1-e06a-452a-8854-3ac9ca5af0fd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0b58ded4-1a0b-4e97-864a-444f1378b937" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0b58ded4-1a0b-4e97-864a-444f1378b937" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0b58ded4-1a0b-4e97-864a-444f1378b937" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "0b58ded4-1a0b-4e97-864a-444f1378b937" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 106.590263, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "17bd9196-c6ad-476d-ac72-dba4f8e1fac9" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "17bd9196-c6ad-476d-ac72-dba4f8e1fac9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "17bd9196-c6ad-476d-ac72-dba4f8e1fac9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "17bd9196-c6ad-476d-ac72-dba4f8e1fac9" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ec06774e-b37e-4a0d-b4a6-c6d4fff72dd6" + }, + "attachedElementGuid" : { + "value" : "17bd9196-c6ad-476d-ac72-dba4f8e1fac9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ec06774e-b37e-4a0d-b4a6-c6d4fff72dd6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ec06774e-b37e-4a0d-b4a6-c6d4fff72dd6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ec06774e-b37e-4a0d-b4a6-c6d4fff72dd6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "ec06774e-b37e-4a0d-b4a6-c6d4fff72dd6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 106.920113, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8ea3c16d-bac6-4fc0-9a72-2f003ce1ab8c" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8ea3c16d-bac6-4fc0-9a72-2f003ce1ab8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "8ea3c16d-bac6-4fc0-9a72-2f003ce1ab8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "8ea3c16d-bac6-4fc0-9a72-2f003ce1ab8c" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fbddbffc-25f9-4dca-b3f9-394905255830" + }, + "attachedElementGuid" : { + "value" : "8ea3c16d-bac6-4fc0-9a72-2f003ce1ab8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "fbddbffc-25f9-4dca-b3f9-394905255830" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fbddbffc-25f9-4dca-b3f9-394905255830" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "fbddbffc-25f9-4dca-b3f9-394905255830" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "fbddbffc-25f9-4dca-b3f9-394905255830" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 107.085114, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4f76a287-c1ce-4821-ac27-0f89caa9f21b" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4f76a287-c1ce-4821-ac27-0f89caa9f21b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "4f76a287-c1ce-4821-ac27-0f89caa9f21b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "4f76a287-c1ce-4821-ac27-0f89caa9f21b" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "71065c53-69d6-459f-935e-58c595909840" + }, + "attachedElementGuid" : { + "value" : "4f76a287-c1ce-4821-ac27-0f89caa9f21b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "71065c53-69d6-459f-935e-58c595909840" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "71065c53-69d6-459f-935e-58c595909840" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "71065c53-69d6-459f-935e-58c595909840" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "71065c53-69d6-459f-935e-58c595909840" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 107.74511, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5c0df236-cea6-4334-b03a-6486fb93f374" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5c0df236-cea6-4334-b03a-6486fb93f374" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "5c0df236-cea6-4334-b03a-6486fb93f374" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "5c0df236-cea6-4334-b03a-6486fb93f374" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c638d205-46dc-42e7-be05-2e02006b6364" + }, + "attachedElementGuid" : { + "value" : "5c0df236-cea6-4334-b03a-6486fb93f374" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c638d205-46dc-42e7-be05-2e02006b6364" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c638d205-46dc-42e7-be05-2e02006b6364" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c638d205-46dc-42e7-be05-2e02006b6364" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "c638d205-46dc-42e7-be05-2e02006b6364" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 111.540115, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ef29c53d-5b1e-43d0-b144-019fb23cd789" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ef29c53d-5b1e-43d0-b144-019fb23cd789" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "ef29c53d-5b1e-43d0-b144-019fb23cd789" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "ef29c53d-5b1e-43d0-b144-019fb23cd789" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "987144fc-7170-42cf-82ed-022f73735f27" + }, + "attachedElementGuid" : { + "value" : "ef29c53d-5b1e-43d0-b144-019fb23cd789" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "987144fc-7170-42cf-82ed-022f73735f27" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "987144fc-7170-42cf-82ed-022f73735f27" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "987144fc-7170-42cf-82ed-022f73735f27" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "987144fc-7170-42cf-82ed-022f73735f27" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 110.880112, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ea9c5240-0196-4347-b648-85d0b719d91c" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ea9c5240-0196-4347-b648-85d0b719d91c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "ea9c5240-0196-4347-b648-85d0b719d91c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "ea9c5240-0196-4347-b648-85d0b719d91c" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "734184aa-efbf-4459-a65c-922b20d21b74" + }, + "attachedElementGuid" : { + "value" : "ea9c5240-0196-4347-b648-85d0b719d91c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "734184aa-efbf-4459-a65c-922b20d21b74" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "734184aa-efbf-4459-a65c-922b20d21b74" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "734184aa-efbf-4459-a65c-922b20d21b74" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "734184aa-efbf-4459-a65c-922b20d21b74" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 111.045113, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b5286f13-54c6-44e3-bb9d-3f3e9cabe38c" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b5286f13-54c6-44e3-bb9d-3f3e9cabe38c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "b5286f13-54c6-44e3-bb9d-3f3e9cabe38c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "b5286f13-54c6-44e3-bb9d-3f3e9cabe38c" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "34f6760d-2fc5-4011-b777-fc6e9890bdd6" + }, + "attachedElementGuid" : { + "value" : "b5286f13-54c6-44e3-bb9d-3f3e9cabe38c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "34f6760d-2fc5-4011-b777-fc6e9890bdd6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "34f6760d-2fc5-4011-b777-fc6e9890bdd6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "34f6760d-2fc5-4011-b777-fc6e9890bdd6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "34f6760d-2fc5-4011-b777-fc6e9890bdd6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 106.672607, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "773159de-7464-4338-85a2-0aa422c47e51" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "773159de-7464-4338-85a2-0aa422c47e51" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "773159de-7464-4338-85a2-0aa422c47e51" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "773159de-7464-4338-85a2-0aa422c47e51" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "eed8033d-0798-4a23-aa8a-960ac1681f1a" + }, + "attachedElementGuid" : { + "value" : "773159de-7464-4338-85a2-0aa422c47e51" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "eed8033d-0798-4a23-aa8a-960ac1681f1a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "eed8033d-0798-4a23-aa8a-960ac1681f1a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "eed8033d-0798-4a23-aa8a-960ac1681f1a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "eed8033d-0798-4a23-aa8a-960ac1681f1a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 106.755112, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bbf9aaed-dd4c-418a-8c2e-6556843c854e" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bbf9aaed-dd4c-418a-8c2e-6556843c854e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "bbf9aaed-dd4c-418a-8c2e-6556843c854e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "bbf9aaed-dd4c-418a-8c2e-6556843c854e" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "895dfbc6-4320-4874-a826-22db83b2c950" + }, + "attachedElementGuid" : { + "value" : "bbf9aaed-dd4c-418a-8c2e-6556843c854e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "895dfbc6-4320-4874-a826-22db83b2c950" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "895dfbc6-4320-4874-a826-22db83b2c950" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "895dfbc6-4320-4874-a826-22db83b2c950" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "895dfbc6-4320-4874-a826-22db83b2c950" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 106.590111, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "574e2d12-2dc4-4241-9d93-cc3250c8c91e" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "574e2d12-2dc4-4241-9d93-cc3250c8c91e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "574e2d12-2dc4-4241-9d93-cc3250c8c91e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "574e2d12-2dc4-4241-9d93-cc3250c8c91e" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ca651be6-152a-4386-b5bb-e6ac45d08c81" + }, + "attachedElementGuid" : { + "value" : "574e2d12-2dc4-4241-9d93-cc3250c8c91e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ca651be6-152a-4386-b5bb-e6ac45d08c81" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ca651be6-152a-4386-b5bb-e6ac45d08c81" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ca651be6-152a-4386-b5bb-e6ac45d08c81" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "ca651be6-152a-4386-b5bb-e6ac45d08c81" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 113.850121, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a283ea71-3e01-4bf9-bcaa-6ab2bc2044eb" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a283ea71-3e01-4bf9-bcaa-6ab2bc2044eb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "a283ea71-3e01-4bf9-bcaa-6ab2bc2044eb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "a283ea71-3e01-4bf9-bcaa-6ab2bc2044eb" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f00c0873-20dd-4003-80ce-a18f77a9ceff" + }, + "attachedElementGuid" : { + "value" : "a283ea71-3e01-4bf9-bcaa-6ab2bc2044eb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f00c0873-20dd-4003-80ce-a18f77a9ceff" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f00c0873-20dd-4003-80ce-a18f77a9ceff" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f00c0873-20dd-4003-80ce-a18f77a9ceff" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "f00c0873-20dd-4003-80ce-a18f77a9ceff" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 114.015, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "646c4fe1-5248-4a96-a765-043d38d09574" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "646c4fe1-5248-4a96-a765-043d38d09574" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "646c4fe1-5248-4a96-a765-043d38d09574" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "646c4fe1-5248-4a96-a765-043d38d09574" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d99462b1-be49-4061-bce1-cb3ec6ff86df" + }, + "attachedElementGuid" : { + "value" : "646c4fe1-5248-4a96-a765-043d38d09574" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d99462b1-be49-4061-bce1-cb3ec6ff86df" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d99462b1-be49-4061-bce1-cb3ec6ff86df" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d99462b1-be49-4061-bce1-cb3ec6ff86df" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d99462b1-be49-4061-bce1-cb3ec6ff86df" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 114.18, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a79a398b-0ce6-402f-8db7-ea4066cf4694" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a79a398b-0ce6-402f-8db7-ea4066cf4694" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "a79a398b-0ce6-402f-8db7-ea4066cf4694" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "a79a398b-0ce6-402f-8db7-ea4066cf4694" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0ddb2248-5258-434b-8e05-07bbe5a255ba" + }, + "attachedElementGuid" : { + "value" : "a79a398b-0ce6-402f-8db7-ea4066cf4694" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0ddb2248-5258-434b-8e05-07bbe5a255ba" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0ddb2248-5258-434b-8e05-07bbe5a255ba" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0ddb2248-5258-434b-8e05-07bbe5a255ba" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "0ddb2248-5258-434b-8e05-07bbe5a255ba" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 114.510117, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d44171bf-afe3-4e97-a3fb-8c2e8b0e7332" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d44171bf-afe3-4e97-a3fb-8c2e8b0e7332" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "d44171bf-afe3-4e97-a3fb-8c2e8b0e7332" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "d44171bf-afe3-4e97-a3fb-8c2e8b0e7332" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3066d197-61af-41d0-baab-131e5c5526e5" + }, + "attachedElementGuid" : { + "value" : "d44171bf-afe3-4e97-a3fb-8c2e8b0e7332" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3066d197-61af-41d0-baab-131e5c5526e5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3066d197-61af-41d0-baab-131e5c5526e5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3066d197-61af-41d0-baab-131e5c5526e5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "3066d197-61af-41d0-baab-131e5c5526e5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 114.675117, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "45b31f12-9b09-49b8-8ecd-c086aced9a5e" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "45b31f12-9b09-49b8-8ecd-c086aced9a5e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "45b31f12-9b09-49b8-8ecd-c086aced9a5e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "45b31f12-9b09-49b8-8ecd-c086aced9a5e" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0316279a-c3c2-4f4a-aa34-290fda549e4f" + }, + "attachedElementGuid" : { + "value" : "45b31f12-9b09-49b8-8ecd-c086aced9a5e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0316279a-c3c2-4f4a-aa34-290fda549e4f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0316279a-c3c2-4f4a-aa34-290fda549e4f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0316279a-c3c2-4f4a-aa34-290fda549e4f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "0316279a-c3c2-4f4a-aa34-290fda549e4f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 115.005119, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "35f955bb-53f9-4ce9-9815-853770bca180" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "35f955bb-53f9-4ce9-9815-853770bca180" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "35f955bb-53f9-4ce9-9815-853770bca180" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "35f955bb-53f9-4ce9-9815-853770bca180" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "69380eaf-853c-4723-a032-6b9b9d533a6c" + }, + "attachedElementGuid" : { + "value" : "35f955bb-53f9-4ce9-9815-853770bca180" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "69380eaf-853c-4723-a032-6b9b9d533a6c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "69380eaf-853c-4723-a032-6b9b9d533a6c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "69380eaf-853c-4723-a032-6b9b9d533a6c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "69380eaf-853c-4723-a032-6b9b9d533a6c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 115.05928, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "705fc0af-cb98-4341-aa68-365f18336f9c" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "705fc0af-cb98-4341-aa68-365f18336f9c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "705fc0af-cb98-4341-aa68-365f18336f9c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "705fc0af-cb98-4341-aa68-365f18336f9c" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "08459f8a-d022-4c49-b7a0-91c706f6397e" + }, + "attachedElementGuid" : { + "value" : "705fc0af-cb98-4341-aa68-365f18336f9c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "08459f8a-d022-4c49-b7a0-91c706f6397e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "08459f8a-d022-4c49-b7a0-91c706f6397e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "08459f8a-d022-4c49-b7a0-91c706f6397e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "08459f8a-d022-4c49-b7a0-91c706f6397e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 115.114273, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a7a04569-9574-43c8-a180-72579689a540" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a7a04569-9574-43c8-a180-72579689a540" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "a7a04569-9574-43c8-a180-72579689a540" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "a7a04569-9574-43c8-a180-72579689a540" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b24cf422-dadf-4e9b-9a67-cdcec82fa540" + }, + "attachedElementGuid" : { + "value" : "a7a04569-9574-43c8-a180-72579689a540" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b24cf422-dadf-4e9b-9a67-cdcec82fa540" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b24cf422-dadf-4e9b-9a67-cdcec82fa540" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b24cf422-dadf-4e9b-9a67-cdcec82fa540" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "b24cf422-dadf-4e9b-9a67-cdcec82fa540" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 115.169, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bad10984-e75e-4bb0-9b38-5ed4cde97087" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bad10984-e75e-4bb0-9b38-5ed4cde97087" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "bad10984-e75e-4bb0-9b38-5ed4cde97087" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "bad10984-e75e-4bb0-9b38-5ed4cde97087" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "77e3e82c-3f5e-4226-90be-5336dc7081eb" + }, + "attachedElementGuid" : { + "value" : "bad10984-e75e-4bb0-9b38-5ed4cde97087" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "77e3e82c-3f5e-4226-90be-5336dc7081eb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "77e3e82c-3f5e-4226-90be-5336dc7081eb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "77e3e82c-3f5e-4226-90be-5336dc7081eb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "77e3e82c-3f5e-4226-90be-5336dc7081eb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Hold_BM,Assembly-CSharp", + "holdEndTime" : 122.100121, + "exactJudgeTime" : 121.110123, + "elementName" : "New Hold", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3e2aebf2-ef29-4e9c-bba3-d9fc5ff0ed38" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3e2aebf2-ef29-4e9c-bba3-d9fc5ff0ed38" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "3e2aebf2-ef29-4e9c-bba3-d9fc5ff0ed38" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "3e2aebf2-ef29-4e9c-bba3-d9fc5ff0ed38" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisualHold_BM,Assembly-CSharp", + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualHold", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5027571e-f99c-4f45-9429-87f4c38b9475" + }, + "attachedElementGuid" : { + "value" : "3e2aebf2-ef29-4e9c-bba3-d9fc5ff0ed38" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5027571e-f99c-4f45-9429-87f4c38b9475" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5027571e-f99c-4f45-9429-87f4c38b9475" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5027571e-f99c-4f45-9429-87f4c38b9475" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExtend_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.5 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteHoldingBreath_BM,Assembly-CSharp", + "effectTime" : 0.989997864 + } + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "5027571e-f99c-4f45-9429-87f4c38b9475" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 120.945122, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "87fb0120-0b74-48e8-9670-d77a00e5bc2b" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "87fb0120-0b74-48e8-9670-d77a00e5bc2b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "87fb0120-0b74-48e8-9670-d77a00e5bc2b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "87fb0120-0b74-48e8-9670-d77a00e5bc2b" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0a39f537-9e64-47e4-8f3b-6ab62d13d3b2" + }, + "attachedElementGuid" : { + "value" : "87fb0120-0b74-48e8-9670-d77a00e5bc2b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0a39f537-9e64-47e4-8f3b-6ab62d13d3b2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0a39f537-9e64-47e4-8f3b-6ab62d13d3b2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0a39f537-9e64-47e4-8f3b-6ab62d13d3b2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "0a39f537-9e64-47e4-8f3b-6ab62d13d3b2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 120.450127, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0db861f3-4826-41e8-98b6-48e5d86ed727" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0db861f3-4826-41e8-98b6-48e5d86ed727" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "0db861f3-4826-41e8-98b6-48e5d86ed727" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "0db861f3-4826-41e8-98b6-48e5d86ed727" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6c9fee8e-ff8a-488a-81fa-feef4c77186f" + }, + "attachedElementGuid" : { + "value" : "0db861f3-4826-41e8-98b6-48e5d86ed727" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6c9fee8e-ff8a-488a-81fa-feef4c77186f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6c9fee8e-ff8a-488a-81fa-feef4c77186f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6c9fee8e-ff8a-488a-81fa-feef4c77186f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "6c9fee8e-ff8a-488a-81fa-feef4c77186f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 123.420128, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5b8be357-eac8-4b8c-a42b-d0baf62f8ced" + }, + "attachedElementGuid" : { + "value" : "7967611a-8b38-4a69-8813-7675232cda94" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5b8be357-eac8-4b8c-a42b-d0baf62f8ced" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "5b8be357-eac8-4b8c-a42b-d0baf62f8ced" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "5b8be357-eac8-4b8c-a42b-d0baf62f8ced" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e6c4f96a-3e26-4085-bf56-c11e2891478d" + }, + "attachedElementGuid" : { + "value" : "5b8be357-eac8-4b8c-a42b-d0baf62f8ced" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e6c4f96a-3e26-4085-bf56-c11e2891478d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e6c4f96a-3e26-4085-bf56-c11e2891478d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e6c4f96a-3e26-4085-bf56-c11e2891478d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "e6c4f96a-3e26-4085-bf56-c11e2891478d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 123.585129, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "62cd9497-bac1-4445-add5-6579da54e8a9" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "62cd9497-bac1-4445-add5-6579da54e8a9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "62cd9497-bac1-4445-add5-6579da54e8a9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "62cd9497-bac1-4445-add5-6579da54e8a9" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cc2aa80b-bcf1-4249-ae1a-3fd4f21dc703" + }, + "attachedElementGuid" : { + "value" : "62cd9497-bac1-4445-add5-6579da54e8a9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "cc2aa80b-bcf1-4249-ae1a-3fd4f21dc703" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "cc2aa80b-bcf1-4249-ae1a-3fd4f21dc703" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "cc2aa80b-bcf1-4249-ae1a-3fd4f21dc703" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "cc2aa80b-bcf1-4249-ae1a-3fd4f21dc703" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 124.575127, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "156ace77-7efd-4ad1-9d3e-d0d9f17d0542" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "156ace77-7efd-4ad1-9d3e-d0d9f17d0542" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "156ace77-7efd-4ad1-9d3e-d0d9f17d0542" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "156ace77-7efd-4ad1-9d3e-d0d9f17d0542" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "90004d6e-5501-4cea-b32e-aa3d00faf6cf" + }, + "attachedElementGuid" : { + "value" : "156ace77-7efd-4ad1-9d3e-d0d9f17d0542" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "90004d6e-5501-4cea-b32e-aa3d00faf6cf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "90004d6e-5501-4cea-b32e-aa3d00faf6cf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "90004d6e-5501-4cea-b32e-aa3d00faf6cf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "90004d6e-5501-4cea-b32e-aa3d00faf6cf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 124.905128, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f8bb52b9-9b33-45f0-9954-c468abc6e90d" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f8bb52b9-9b33-45f0-9954-c468abc6e90d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "f8bb52b9-9b33-45f0-9954-c468abc6e90d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "f8bb52b9-9b33-45f0-9954-c468abc6e90d" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d315a878-239f-4387-8fa7-332ec964e5f9" + }, + "attachedElementGuid" : { + "value" : "f8bb52b9-9b33-45f0-9954-c468abc6e90d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d315a878-239f-4387-8fa7-332ec964e5f9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d315a878-239f-4387-8fa7-332ec964e5f9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d315a878-239f-4387-8fa7-332ec964e5f9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d315a878-239f-4387-8fa7-332ec964e5f9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 124.740128, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ddc17c4e-84e2-4855-bd25-be0e338fdf49" + }, + "attachedElementGuid" : { + "value" : "e92ff1b4-b1cc-44f7-9876-dcdd38391894" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ddc17c4e-84e2-4855-bd25-be0e338fdf49" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "ddc17c4e-84e2-4855-bd25-be0e338fdf49" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "ddc17c4e-84e2-4855-bd25-be0e338fdf49" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "47f1b470-448f-4646-92aa-5c8bc65aab00" + }, + "attachedElementGuid" : { + "value" : "ddc17c4e-84e2-4855-bd25-be0e338fdf49" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "47f1b470-448f-4646-92aa-5c8bc65aab00" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "47f1b470-448f-4646-92aa-5c8bc65aab00" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "47f1b470-448f-4646-92aa-5c8bc65aab00" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "47f1b470-448f-4646-92aa-5c8bc65aab00" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 124.410126, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "70c3b95b-edea-42d1-b41c-03d29f7de600" + }, + "attachedElementGuid" : { + "value" : "af945504-efab-435d-abd4-13aa66c2ab70" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "70c3b95b-edea-42d1-b41c-03d29f7de600" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "70c3b95b-edea-42d1-b41c-03d29f7de600" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "70c3b95b-edea-42d1-b41c-03d29f7de600" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ae4dca57-74c0-4aff-b25a-5d180b00b657" + }, + "attachedElementGuid" : { + "value" : "70c3b95b-edea-42d1-b41c-03d29f7de600" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ae4dca57-74c0-4aff-b25a-5d180b00b657" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ae4dca57-74c0-4aff-b25a-5d180b00b657" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ae4dca57-74c0-4aff-b25a-5d180b00b657" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "ae4dca57-74c0-4aff-b25a-5d180b00b657" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 120.615128, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a065e9b6-324f-4ecb-a99a-bfdacabec736" + }, + "attachedElementGuid" : { + "value" : "b8e2c681-5717-4e0b-a82f-cb9450b8d481" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a065e9b6-324f-4ecb-a99a-bfdacabec736" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "a065e9b6-324f-4ecb-a99a-bfdacabec736" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "a065e9b6-324f-4ecb-a99a-bfdacabec736" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b22a8579-c590-4c94-9d8c-930b565b1e9f" + }, + "attachedElementGuid" : { + "value" : "a065e9b6-324f-4ecb-a99a-bfdacabec736" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b22a8579-c590-4c94-9d8c-930b565b1e9f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b22a8579-c590-4c94-9d8c-930b565b1e9f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b22a8579-c590-4c94-9d8c-930b565b1e9f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "b22a8579-c590-4c94-9d8c-930b565b1e9f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp", + "elementName" : "P7{131.01-146.85}(0,0,5234}", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b4cd674c-0e46-4575-ba89-347312bfd976" + }, + "attachedElementGuid" : { + "value" : "00000000-0000-0000-0000-000000000000" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 5234 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b4cd674c-0e46-4575-ba89-347312bfd976" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b4cd674c-0e46-4575-ba89-347312bfd976" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp", + "elementName" : "Note", + "tags" : [ + + ], + "elementGuid" : { + "value" : "65aa4424-cd06-4fcd-9037-9aca2e2cf7f9" + }, + "attachedElementGuid" : { + "value" : "b4cd674c-0e46-4575-ba89-347312bfd976" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "65aa4424-cd06-4fcd-9037-9aca2e2cf7f9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "65aa4424-cd06-4fcd-9037-9aca2e2cf7f9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "131.01-146.85", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d96a6a1c-888d-4b3c-8051-84aad38d7593" + }, + "attachedElementGuid" : { + "value" : "f090c03d-7b08-4ec2-94d5-6e4baa1c4af1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d96a6a1c-888d-4b3c-8051-84aad38d7593" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d96a6a1c-888d-4b3c-8051-84aad38d7593" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 0, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "d96a6a1c-888d-4b3c-8051-84aad38d7593" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 131.01, + "trackEndTime" : 146.85, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "d96a6a1c-888d-4b3c-8051-84aad38d7593" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2f05d5af-5c2f-4526-a968-b92accfb336b" + }, + "attachedElementGuid" : { + "value" : "d96a6a1c-888d-4b3c-8051-84aad38d7593" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 5227.5 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2f05d5af-5c2f-4526-a968-b92accfb336b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2f05d5af-5c2f-4526-a968-b92accfb336b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "2f05d5af-5c2f-4526-a968-b92accfb336b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "20d43b46-04e0-43ee-9111-bcbba258a0e6" + }, + "attachedElementGuid" : { + "value" : "d96a6a1c-888d-4b3c-8051-84aad38d7593" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 5947.5 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "20d43b46-04e0-43ee-9111-bcbba258a0e6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "20d43b46-04e0-43ee-9111-bcbba258a0e6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "20d43b46-04e0-43ee-9111-bcbba258a0e6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "T1", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4a547cb1-cddc-4efa-a6f2-09849e18a4bf" + }, + "attachedElementGuid" : { + "value" : "65aa4424-cd06-4fcd-9037-9aca2e2cf7f9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4a547cb1-cddc-4efa-a6f2-09849e18a4bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4a547cb1-cddc-4efa-a6f2-09849e18a4bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 0, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "4a547cb1-cddc-4efa-a6f2-09849e18a4bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 131.01, + "trackEndTime" : 138.6, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "4a547cb1-cddc-4efa-a6f2-09849e18a4bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c67fa320-fb20-489a-b29c-3bda56b14fda" + }, + "attachedElementGuid" : { + "value" : "4a547cb1-cddc-4efa-a6f2-09849e18a4bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c67fa320-fb20-489a-b29c-3bda56b14fda" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c67fa320-fb20-489a-b29c-3bda56b14fda" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c67fa320-fb20-489a-b29c-3bda56b14fda" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c4f7db03-7213-4faf-aa64-4b15971ea489" + }, + "attachedElementGuid" : { + "value" : "4a547cb1-cddc-4efa-a6f2-09849e18a4bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 345 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c4f7db03-7213-4faf-aa64-4b15971ea489" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c4f7db03-7213-4faf-aa64-4b15971ea489" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c4f7db03-7213-4faf-aa64-4b15971ea489" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b3f524f3-c083-408f-8ff4-e6781f5de24a" + }, + "attachedElementGuid" : { + "value" : "4a547cb1-cddc-4efa-a6f2-09849e18a4bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b3f524f3-c083-408f-8ff4-e6781f5de24a" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 131.01 + },{ + "value" : false, + "time" : 138.6 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + { + "startValue" : 32.01, + "endValue" : 5, + "startTime" : 16.17, + "endTime" : 5, + "animationCurveType" : 0 + } + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "83ae2c05-05b3-4902-93ea-f482df9a2915" + }, + "attachedElementGuid" : { + "value" : "b3f524f3-c083-408f-8ff4-e6781f5de24a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "83ae2c05-05b3-4902-93ea-f482df9a2915" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "83ae2c05-05b3-4902-93ea-f482df9a2915" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0.3965093, + "g" : 0.497728825, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "83ae2c05-05b3-4902-93ea-f482df9a2915" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "T1-1", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a6c1ff15-86cb-40db-b3ba-27cc4ea9ba36" + }, + "attachedElementGuid" : { + "value" : "65aa4424-cd06-4fcd-9037-9aca2e2cf7f9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a6c1ff15-86cb-40db-b3ba-27cc4ea9ba36" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a6c1ff15-86cb-40db-b3ba-27cc4ea9ba36" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 1, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "a6c1ff15-86cb-40db-b3ba-27cc4ea9ba36" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 138.6, + "trackEndTime" : 146.52, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "a6c1ff15-86cb-40db-b3ba-27cc4ea9ba36" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode0", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5f58759c-c776-4e2d-a348-8a8390e59a88" + }, + "attachedElementGuid" : { + "value" : "a6c1ff15-86cb-40db-b3ba-27cc4ea9ba36" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 345 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5f58759c-c776-4e2d-a348-8a8390e59a88" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5f58759c-c776-4e2d-a348-8a8390e59a88" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5f58759c-c776-4e2d-a348-8a8390e59a88" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode1", + "tags" : [ + + ], + "elementGuid" : { + "value" : "581c9422-d607-4df9-ae0d-1be9e0c0b291" + }, + "attachedElementGuid" : { + "value" : "a6c1ff15-86cb-40db-b3ba-27cc4ea9ba36" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 390 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "581c9422-d607-4df9-ae0d-1be9e0c0b291" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "581c9422-d607-4df9-ae0d-1be9e0c0b291" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "581c9422-d607-4df9-ae0d-1be9e0c0b291" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode2", + "tags" : [ + + ], + "elementGuid" : { + "value" : "415b194e-7a26-4409-9cd1-283c5d1df08d" + }, + "attachedElementGuid" : { + "value" : "a6c1ff15-86cb-40db-b3ba-27cc4ea9ba36" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 435 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "415b194e-7a26-4409-9cd1-283c5d1df08d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "415b194e-7a26-4409-9cd1-283c5d1df08d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "415b194e-7a26-4409-9cd1-283c5d1df08d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode3", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d6627082-5c2b-4e50-bbde-c08105380580" + }, + "attachedElementGuid" : { + "value" : "a6c1ff15-86cb-40db-b3ba-27cc4ea9ba36" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 480 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d6627082-5c2b-4e50-bbde-c08105380580" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d6627082-5c2b-4e50-bbde-c08105380580" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d6627082-5c2b-4e50-bbde-c08105380580" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode4", + "tags" : [ + + ], + "elementGuid" : { + "value" : "43090498-4b52-418d-b129-fa035a7b607d" + }, + "attachedElementGuid" : { + "value" : "a6c1ff15-86cb-40db-b3ba-27cc4ea9ba36" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 525 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "43090498-4b52-418d-b129-fa035a7b607d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "43090498-4b52-418d-b129-fa035a7b607d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "43090498-4b52-418d-b129-fa035a7b607d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode5", + "tags" : [ + + ], + "elementGuid" : { + "value" : "99bda342-4cf9-428d-a115-dfa54cea3814" + }, + "attachedElementGuid" : { + "value" : "a6c1ff15-86cb-40db-b3ba-27cc4ea9ba36" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 570 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "99bda342-4cf9-428d-a115-dfa54cea3814" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "99bda342-4cf9-428d-a115-dfa54cea3814" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "99bda342-4cf9-428d-a115-dfa54cea3814" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode6", + "tags" : [ + + ], + "elementGuid" : { + "value" : "67858680-7c2a-4dd6-b9a9-dddd0ebc79c6" + }, + "attachedElementGuid" : { + "value" : "a6c1ff15-86cb-40db-b3ba-27cc4ea9ba36" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 615 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "67858680-7c2a-4dd6-b9a9-dddd0ebc79c6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "67858680-7c2a-4dd6-b9a9-dddd0ebc79c6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "67858680-7c2a-4dd6-b9a9-dddd0ebc79c6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode7", + "tags" : [ + + ], + "elementGuid" : { + "value" : "387ea638-965c-4d7c-a0fa-d507902c6f58" + }, + "attachedElementGuid" : { + "value" : "a6c1ff15-86cb-40db-b3ba-27cc4ea9ba36" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 660 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "387ea638-965c-4d7c-a0fa-d507902c6f58" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "387ea638-965c-4d7c-a0fa-d507902c6f58" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "387ea638-965c-4d7c-a0fa-d507902c6f58" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode8", + "tags" : [ + + ], + "elementGuid" : { + "value" : "58579dc0-de09-4f47-9cf8-c91ac1430f02" + }, + "attachedElementGuid" : { + "value" : "a6c1ff15-86cb-40db-b3ba-27cc4ea9ba36" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 705 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "58579dc0-de09-4f47-9cf8-c91ac1430f02" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "58579dc0-de09-4f47-9cf8-c91ac1430f02" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "58579dc0-de09-4f47-9cf8-c91ac1430f02" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1aebfc69-f25f-401c-a9b0-716b55f40076" + }, + "attachedElementGuid" : { + "value" : "a6c1ff15-86cb-40db-b3ba-27cc4ea9ba36" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1aebfc69-f25f-401c-a9b0-716b55f40076" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 138.6 + },{ + "value" : false, + "time" : 146.85 + } + ] + }, + "enableProcessTime" : 0, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + { + "startValue" : 32.01, + "endValue" : 5, + "startTime" : 16.17, + "endTime" : 5, + "animationCurveType" : 0 + } + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "01896d7a-d523-420a-bb44-3888647f1c68" + }, + "attachedElementGuid" : { + "value" : "1aebfc69-f25f-401c-a9b0-716b55f40076" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "01896d7a-d523-420a-bb44-3888647f1c68" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "01896d7a-d523-420a-bb44-3888647f1c68" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0.3965093, + "g" : 0.497728825, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "01896d7a-d523-420a-bb44-3888647f1c68" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "T1-2", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bd48f141-5d42-4bf6-9edd-54ee34f84eee" + }, + "attachedElementGuid" : { + "value" : "65aa4424-cd06-4fcd-9037-9aca2e2cf7f9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "bd48f141-5d42-4bf6-9edd-54ee34f84eee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bd48f141-5d42-4bf6-9edd-54ee34f84eee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 1, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "bd48f141-5d42-4bf6-9edd-54ee34f84eee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 138.6, + "trackEndTime" : 146.52, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "bd48f141-5d42-4bf6-9edd-54ee34f84eee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode0", + "tags" : [ + + ], + "elementGuid" : { + "value" : "83a215a8-232c-471a-804e-2fa587949f45" + }, + "attachedElementGuid" : { + "value" : "bd48f141-5d42-4bf6-9edd-54ee34f84eee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 345 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "83a215a8-232c-471a-804e-2fa587949f45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "83a215a8-232c-471a-804e-2fa587949f45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "83a215a8-232c-471a-804e-2fa587949f45" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode1", + "tags" : [ + + ], + "elementGuid" : { + "value" : "44da2bae-008b-44c3-a5f0-0e4c8d9bbaac" + }, + "attachedElementGuid" : { + "value" : "bd48f141-5d42-4bf6-9edd-54ee34f84eee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 390 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "44da2bae-008b-44c3-a5f0-0e4c8d9bbaac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "44da2bae-008b-44c3-a5f0-0e4c8d9bbaac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "44da2bae-008b-44c3-a5f0-0e4c8d9bbaac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode2", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c0023552-1cd8-4232-8eb9-3765ffe9d0ce" + }, + "attachedElementGuid" : { + "value" : "bd48f141-5d42-4bf6-9edd-54ee34f84eee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 435 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c0023552-1cd8-4232-8eb9-3765ffe9d0ce" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c0023552-1cd8-4232-8eb9-3765ffe9d0ce" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c0023552-1cd8-4232-8eb9-3765ffe9d0ce" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode3", + "tags" : [ + + ], + "elementGuid" : { + "value" : "455646b7-7089-4099-99f6-90da6e323e1d" + }, + "attachedElementGuid" : { + "value" : "bd48f141-5d42-4bf6-9edd-54ee34f84eee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 480 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "455646b7-7089-4099-99f6-90da6e323e1d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "455646b7-7089-4099-99f6-90da6e323e1d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "455646b7-7089-4099-99f6-90da6e323e1d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode4", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0190c9af-e09f-4dbd-96ef-3203cb8a2039" + }, + "attachedElementGuid" : { + "value" : "bd48f141-5d42-4bf6-9edd-54ee34f84eee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 525 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0190c9af-e09f-4dbd-96ef-3203cb8a2039" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0190c9af-e09f-4dbd-96ef-3203cb8a2039" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0190c9af-e09f-4dbd-96ef-3203cb8a2039" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode5", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2a4101b9-a452-4f2c-90eb-994a71b21614" + }, + "attachedElementGuid" : { + "value" : "bd48f141-5d42-4bf6-9edd-54ee34f84eee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 570 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2a4101b9-a452-4f2c-90eb-994a71b21614" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2a4101b9-a452-4f2c-90eb-994a71b21614" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "2a4101b9-a452-4f2c-90eb-994a71b21614" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode6", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6c6de030-49df-4a90-b904-7c0bec490498" + }, + "attachedElementGuid" : { + "value" : "bd48f141-5d42-4bf6-9edd-54ee34f84eee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 615 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6c6de030-49df-4a90-b904-7c0bec490498" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6c6de030-49df-4a90-b904-7c0bec490498" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6c6de030-49df-4a90-b904-7c0bec490498" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode7", + "tags" : [ + + ], + "elementGuid" : { + "value" : "80cfd6d2-cd83-4464-a6cc-0c194e53768a" + }, + "attachedElementGuid" : { + "value" : "bd48f141-5d42-4bf6-9edd-54ee34f84eee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 660 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "80cfd6d2-cd83-4464-a6cc-0c194e53768a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "80cfd6d2-cd83-4464-a6cc-0c194e53768a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "80cfd6d2-cd83-4464-a6cc-0c194e53768a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode8", + "tags" : [ + + ], + "elementGuid" : { + "value" : "aa3afea0-3cdd-46fc-a294-c4d8ef375a1c" + }, + "attachedElementGuid" : { + "value" : "bd48f141-5d42-4bf6-9edd-54ee34f84eee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 705 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "aa3afea0-3cdd-46fc-a294-c4d8ef375a1c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "aa3afea0-3cdd-46fc-a294-c4d8ef375a1c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "aa3afea0-3cdd-46fc-a294-c4d8ef375a1c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "098eae9d-ee8b-402c-974b-50bc9b4c89e8" + }, + "attachedElementGuid" : { + "value" : "bd48f141-5d42-4bf6-9edd-54ee34f84eee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "098eae9d-ee8b-402c-974b-50bc9b4c89e8" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : true, + "time" : 138.6 + },{ + "value" : false, + "time" : 146.85 + } + ] + }, + "enableProcessTime" : 0, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + { + "startValue" : 32.01, + "endValue" : 5, + "startTime" : 16.17, + "endTime" : 5, + "animationCurveType" : 0 + } + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1cae8b20-fb0f-4621-b37c-7441134694da" + }, + "attachedElementGuid" : { + "value" : "098eae9d-ee8b-402c-974b-50bc9b4c89e8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "1cae8b20-fb0f-4621-b37c-7441134694da" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1cae8b20-fb0f-4621-b37c-7441134694da" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0.3965093, + "g" : 0.497728825, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "1cae8b20-fb0f-4621-b37c-7441134694da" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp", + "elementName" : "Note_guide", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f24ee3d7-86e3-4469-8bd0-b1d07f5d25aa" + }, + "attachedElementGuid" : { + "value" : "b4cd674c-0e46-4575-ba89-347312bfd976" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f24ee3d7-86e3-4469-8bd0-b1d07f5d25aa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f24ee3d7-86e3-4469-8bd0-b1d07f5d25aa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "T1", + "tags" : [ + + ], + "elementGuid" : { + "value" : "abc200f2-fcb0-42ec-8db3-265e7668fdae" + }, + "attachedElementGuid" : { + "value" : "f24ee3d7-86e3-4469-8bd0-b1d07f5d25aa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "abc200f2-fcb0-42ec-8db3-265e7668fdae" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "abc200f2-fcb0-42ec-8db3-265e7668fdae" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 0, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "abc200f2-fcb0-42ec-8db3-265e7668fdae" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 128.51, + "trackEndTime" : 137.1, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "abc200f2-fcb0-42ec-8db3-265e7668fdae" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c1598e9b-64c8-4fe7-8387-ceb219068c2b" + }, + "attachedElementGuid" : { + "value" : "abc200f2-fcb0-42ec-8db3-265e7668fdae" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c1598e9b-64c8-4fe7-8387-ceb219068c2b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c1598e9b-64c8-4fe7-8387-ceb219068c2b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c1598e9b-64c8-4fe7-8387-ceb219068c2b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c604fe30-40ee-4164-915f-672ecc809808" + }, + "attachedElementGuid" : { + "value" : "abc200f2-fcb0-42ec-8db3-265e7668fdae" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 345 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c604fe30-40ee-4164-915f-672ecc809808" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c604fe30-40ee-4164-915f-672ecc809808" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c604fe30-40ee-4164-915f-672ecc809808" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "42a1b2b8-9e3a-4b08-8991-efca9460fa92" + }, + "attachedElementGuid" : { + "value" : "abc200f2-fcb0-42ec-8db3-265e7668fdae" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "42a1b2b8-9e3a-4b08-8991-efca9460fa92" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : false, + "time" : 131.01 + },{ + "value" : false, + "time" : 138.6 + } + ] + }, + "enableProcessTime" : 0.5, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + { + "startValue" : 32.01, + "endValue" : 5, + "startTime" : 16.17, + "endTime" : 5, + "animationCurveType" : 0 + } + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7ff7ad14-c9e4-49af-8675-1a3a34655720" + }, + "attachedElementGuid" : { + "value" : "42a1b2b8-9e3a-4b08-8991-efca9460fa92" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7ff7ad14-c9e4-49af-8675-1a3a34655720" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7ff7ad14-c9e4-49af-8675-1a3a34655720" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0.5, + "g" : 0.8, + "b" : 1, + "a" : 0.5 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "7ff7ad14-c9e4-49af-8675-1a3a34655720" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "T1-1", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fc95291f-3542-425c-aa17-361298c73bf6" + }, + "attachedElementGuid" : { + "value" : "f24ee3d7-86e3-4469-8bd0-b1d07f5d25aa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "fc95291f-3542-425c-aa17-361298c73bf6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fc95291f-3542-425c-aa17-361298c73bf6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 1, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "fc95291f-3542-425c-aa17-361298c73bf6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 137.1, + "trackEndTime" : 145.02, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "fc95291f-3542-425c-aa17-361298c73bf6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode0", + "tags" : [ + + ], + "elementGuid" : { + "value" : "27d37c2e-31f8-4c76-9478-906ef2806eee" + }, + "attachedElementGuid" : { + "value" : "fc95291f-3542-425c-aa17-361298c73bf6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 345 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "27d37c2e-31f8-4c76-9478-906ef2806eee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "27d37c2e-31f8-4c76-9478-906ef2806eee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "27d37c2e-31f8-4c76-9478-906ef2806eee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode1", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a30fd01b-a77b-4d82-94a5-e5ba1bd1c04c" + }, + "attachedElementGuid" : { + "value" : "fc95291f-3542-425c-aa17-361298c73bf6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 390 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a30fd01b-a77b-4d82-94a5-e5ba1bd1c04c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a30fd01b-a77b-4d82-94a5-e5ba1bd1c04c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a30fd01b-a77b-4d82-94a5-e5ba1bd1c04c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode2", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5634c96f-eab5-4b36-835b-22f3e24965ad" + }, + "attachedElementGuid" : { + "value" : "fc95291f-3542-425c-aa17-361298c73bf6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 435 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5634c96f-eab5-4b36-835b-22f3e24965ad" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5634c96f-eab5-4b36-835b-22f3e24965ad" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5634c96f-eab5-4b36-835b-22f3e24965ad" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode3", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1cd27ae2-7ead-4a48-a97f-2974856f6b84" + }, + "attachedElementGuid" : { + "value" : "fc95291f-3542-425c-aa17-361298c73bf6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 480 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "1cd27ae2-7ead-4a48-a97f-2974856f6b84" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1cd27ae2-7ead-4a48-a97f-2974856f6b84" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "1cd27ae2-7ead-4a48-a97f-2974856f6b84" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode4", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7382faf2-baca-4787-899b-19f7cbe3414e" + }, + "attachedElementGuid" : { + "value" : "fc95291f-3542-425c-aa17-361298c73bf6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 525 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7382faf2-baca-4787-899b-19f7cbe3414e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7382faf2-baca-4787-899b-19f7cbe3414e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "7382faf2-baca-4787-899b-19f7cbe3414e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode5", + "tags" : [ + + ], + "elementGuid" : { + "value" : "73c56a60-9fc9-4572-887d-2a9d785c3a85" + }, + "attachedElementGuid" : { + "value" : "fc95291f-3542-425c-aa17-361298c73bf6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 570 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "73c56a60-9fc9-4572-887d-2a9d785c3a85" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "73c56a60-9fc9-4572-887d-2a9d785c3a85" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "73c56a60-9fc9-4572-887d-2a9d785c3a85" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode6", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c719eb29-91b3-42ac-87dc-0391d09d925d" + }, + "attachedElementGuid" : { + "value" : "fc95291f-3542-425c-aa17-361298c73bf6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 615 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c719eb29-91b3-42ac-87dc-0391d09d925d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c719eb29-91b3-42ac-87dc-0391d09d925d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c719eb29-91b3-42ac-87dc-0391d09d925d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode7", + "tags" : [ + + ], + "elementGuid" : { + "value" : "25853e9c-9a64-4f2e-8e95-2bad7d170399" + }, + "attachedElementGuid" : { + "value" : "fc95291f-3542-425c-aa17-361298c73bf6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 660 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "25853e9c-9a64-4f2e-8e95-2bad7d170399" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "25853e9c-9a64-4f2e-8e95-2bad7d170399" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "25853e9c-9a64-4f2e-8e95-2bad7d170399" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode8", + "tags" : [ + + ], + "elementGuid" : { + "value" : "21c4ebb8-bfcf-4795-919e-7cfd5fee6831" + }, + "attachedElementGuid" : { + "value" : "fc95291f-3542-425c-aa17-361298c73bf6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 705 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "21c4ebb8-bfcf-4795-919e-7cfd5fee6831" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "21c4ebb8-bfcf-4795-919e-7cfd5fee6831" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "21c4ebb8-bfcf-4795-919e-7cfd5fee6831" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "918c59af-81f5-4d5d-9350-dee012be9602" + }, + "attachedElementGuid" : { + "value" : "fc95291f-3542-425c-aa17-361298c73bf6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "918c59af-81f5-4d5d-9350-dee012be9602" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : false, + "time" : 138.6 + },{ + "value" : false, + "time" : 146.85 + } + ] + }, + "enableProcessTime" : 0, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + { + "startValue" : 32.01, + "endValue" : 5, + "startTime" : 16.17, + "endTime" : 5, + "animationCurveType" : 0 + } + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cbd18d5f-faa7-4747-9570-101cb97d7ef9" + }, + "attachedElementGuid" : { + "value" : "918c59af-81f5-4d5d-9350-dee012be9602" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "cbd18d5f-faa7-4747-9570-101cb97d7ef9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "cbd18d5f-faa7-4747-9570-101cb97d7ef9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0.5, + "g" : 0.8, + "b" : 1, + "a" : 0.5 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "cbd18d5f-faa7-4747-9570-101cb97d7ef9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "T1-2", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ac1d7fa5-49a3-4dd3-8bef-01ff1099e471" + }, + "attachedElementGuid" : { + "value" : "f24ee3d7-86e3-4469-8bd0-b1d07f5d25aa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ac1d7fa5-49a3-4dd3-8bef-01ff1099e471" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ac1d7fa5-49a3-4dd3-8bef-01ff1099e471" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 1, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "ac1d7fa5-49a3-4dd3-8bef-01ff1099e471" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 137.1, + "trackEndTime" : 145.02, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "ac1d7fa5-49a3-4dd3-8bef-01ff1099e471" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode0", + "tags" : [ + + ], + "elementGuid" : { + "value" : "aa50d2ed-9c7d-46ac-bbd4-40c1dbb09273" + }, + "attachedElementGuid" : { + "value" : "ac1d7fa5-49a3-4dd3-8bef-01ff1099e471" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 345 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "aa50d2ed-9c7d-46ac-bbd4-40c1dbb09273" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "aa50d2ed-9c7d-46ac-bbd4-40c1dbb09273" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "aa50d2ed-9c7d-46ac-bbd4-40c1dbb09273" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode1", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5186c00a-8989-4fc9-b560-d9e9e7d37c42" + }, + "attachedElementGuid" : { + "value" : "ac1d7fa5-49a3-4dd3-8bef-01ff1099e471" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 390 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "5186c00a-8989-4fc9-b560-d9e9e7d37c42" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5186c00a-8989-4fc9-b560-d9e9e7d37c42" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "5186c00a-8989-4fc9-b560-d9e9e7d37c42" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode2", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c64aad44-dafc-4bab-bae5-e585c98c6130" + }, + "attachedElementGuid" : { + "value" : "ac1d7fa5-49a3-4dd3-8bef-01ff1099e471" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 435 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c64aad44-dafc-4bab-bae5-e585c98c6130" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c64aad44-dafc-4bab-bae5-e585c98c6130" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c64aad44-dafc-4bab-bae5-e585c98c6130" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode3", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0fd16101-068e-4c7d-94ed-a4cac4f3e25c" + }, + "attachedElementGuid" : { + "value" : "ac1d7fa5-49a3-4dd3-8bef-01ff1099e471" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 480 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0fd16101-068e-4c7d-94ed-a4cac4f3e25c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0fd16101-068e-4c7d-94ed-a4cac4f3e25c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0fd16101-068e-4c7d-94ed-a4cac4f3e25c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode4", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d45f6cd9-d516-4042-b503-fc412560a04c" + }, + "attachedElementGuid" : { + "value" : "ac1d7fa5-49a3-4dd3-8bef-01ff1099e471" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 525 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d45f6cd9-d516-4042-b503-fc412560a04c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d45f6cd9-d516-4042-b503-fc412560a04c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d45f6cd9-d516-4042-b503-fc412560a04c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode5", + "tags" : [ + + ], + "elementGuid" : { + "value" : "61991e5b-8f3e-4bfc-b487-e126255d2858" + }, + "attachedElementGuid" : { + "value" : "ac1d7fa5-49a3-4dd3-8bef-01ff1099e471" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 5, + "y" : 0, + "z" : 570 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "61991e5b-8f3e-4bfc-b487-e126255d2858" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "61991e5b-8f3e-4bfc-b487-e126255d2858" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "61991e5b-8f3e-4bfc-b487-e126255d2858" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode6", + "tags" : [ + + ], + "elementGuid" : { + "value" : "74911fbb-3d8b-409c-99e1-f757a49dce3c" + }, + "attachedElementGuid" : { + "value" : "ac1d7fa5-49a3-4dd3-8bef-01ff1099e471" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 615 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "74911fbb-3d8b-409c-99e1-f757a49dce3c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "74911fbb-3d8b-409c-99e1-f757a49dce3c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "74911fbb-3d8b-409c-99e1-f757a49dce3c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode7", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6b67ec4c-3f39-4b2f-a035-7922a671a2ee" + }, + "attachedElementGuid" : { + "value" : "ac1d7fa5-49a3-4dd3-8bef-01ff1099e471" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -5, + "y" : 0, + "z" : 660 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6b67ec4c-3f39-4b2f-a035-7922a671a2ee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6b67ec4c-3f39-4b2f-a035-7922a671a2ee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6b67ec4c-3f39-4b2f-a035-7922a671a2ee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "PathNode8", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8bc7d7ea-cbe0-4a7c-98d6-8bcd0523a0c3" + }, + "attachedElementGuid" : { + "value" : "ac1d7fa5-49a3-4dd3-8bef-01ff1099e471" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 705 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8bc7d7ea-cbe0-4a7c-98d6-8bcd0523a0c3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8bc7d7ea-cbe0-4a7c-98d6-8bcd0523a0c3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8bc7d7ea-cbe0-4a7c-98d6-8bcd0523a0c3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackHeadPoint_BM,Assembly-CSharp", + "motionApplyRotation" : false, + "motionEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "elementName" : "New Track Head Point", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a859909b-f3a7-49f5-86c9-6b60e6d3446e" + }, + "attachedElementGuid" : { + "value" : "ac1d7fa5-49a3-4dd3-8bef-01ff1099e471" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a859909b-f3a7-49f5-86c9-6b60e6d3446e" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMTrail_BM,Assembly-CSharp", + "visibleTimeLength" : { + "animatedFloatList" : [ + + ] + }, + "enableTimes" : { + "animatedBoolList" : [ + { + "value" : false, + "time" : 0 + },{ + "value" : false, + "time" : 138.6 + },{ + "value" : false, + "time" : 146.85 + } + ] + }, + "enableProcessTime" : 0, + "headSize" : 1, + "headRotateSpeed" : { + "animatedFloatList" : [ + { + "startValue" : 32.01, + "endValue" : 5, + "startTime" : 16.17, + "endTime" : 5, + "animationCurveType" : 0 + } + ] + }, + "isStatic" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_Trail", + "elementName" : "New Environment Object", + "tags" : [ + + ], + "elementGuid" : { + "value" : "72e8b1ef-4f4c-4e43-970a-c2fd7af6f8ed" + }, + "attachedElementGuid" : { + "value" : "a859909b-f3a7-49f5-86c9-6b60e6d3446e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "72e8b1ef-4f4c-4e43-970a-c2fd7af6f8ed" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "72e8b1ef-4f4c-4e43-970a-c2fd7af6f8ed" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0.5, + "g" : 0.8, + "b" : 1, + "a" : 0.5 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "72e8b1ef-4f4c-4e43-970a-c2fd7af6f8ed" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 132.000137, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ba639341-f643-47d3-803b-ee440460d96a" + }, + "attachedElementGuid" : { + "value" : "4a547cb1-cddc-4efa-a6f2-09849e18a4bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ba639341-f643-47d3-803b-ee440460d96a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "ba639341-f643-47d3-803b-ee440460d96a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "ba639341-f643-47d3-803b-ee440460d96a" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e6169ca5-1bbc-4123-9426-01fd8209e4d9" + }, + "attachedElementGuid" : { + "value" : "ba639341-f643-47d3-803b-ee440460d96a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "e6169ca5-1bbc-4123-9426-01fd8209e4d9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e6169ca5-1bbc-4123-9426-01fd8209e4d9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "e6169ca5-1bbc-4123-9426-01fd8209e4d9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "e6169ca5-1bbc-4123-9426-01fd8209e4d9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 132.990143, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4018a0a1-73b1-4b67-af7c-c23bf5cb28ea" + }, + "attachedElementGuid" : { + "value" : "4a547cb1-cddc-4efa-a6f2-09849e18a4bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4018a0a1-73b1-4b67-af7c-c23bf5cb28ea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "4018a0a1-73b1-4b67-af7c-c23bf5cb28ea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "4018a0a1-73b1-4b67-af7c-c23bf5cb28ea" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "80934674-4103-459c-9cb0-7ba0925b572f" + }, + "attachedElementGuid" : { + "value" : "4018a0a1-73b1-4b67-af7c-c23bf5cb28ea" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "80934674-4103-459c-9cb0-7ba0925b572f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "80934674-4103-459c-9cb0-7ba0925b572f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "80934674-4103-459c-9cb0-7ba0925b572f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "80934674-4103-459c-9cb0-7ba0925b572f" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 133.980133, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5519a2ed-507a-46fc-a9ff-3f2632bcb536" + }, + "attachedElementGuid" : { + "value" : "4a547cb1-cddc-4efa-a6f2-09849e18a4bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5519a2ed-507a-46fc-a9ff-3f2632bcb536" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "5519a2ed-507a-46fc-a9ff-3f2632bcb536" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "5519a2ed-507a-46fc-a9ff-3f2632bcb536" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9cdf05db-7749-4ac2-9a52-a3abfa9cd73b" + }, + "attachedElementGuid" : { + "value" : "5519a2ed-507a-46fc-a9ff-3f2632bcb536" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9cdf05db-7749-4ac2-9a52-a3abfa9cd73b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9cdf05db-7749-4ac2-9a52-a3abfa9cd73b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "9cdf05db-7749-4ac2-9a52-a3abfa9cd73b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "9cdf05db-7749-4ac2-9a52-a3abfa9cd73b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 134.970139, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7d233f71-c304-49a8-8149-92f96fdf7c86" + }, + "attachedElementGuid" : { + "value" : "4a547cb1-cddc-4efa-a6f2-09849e18a4bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7d233f71-c304-49a8-8149-92f96fdf7c86" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "7d233f71-c304-49a8-8149-92f96fdf7c86" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "7d233f71-c304-49a8-8149-92f96fdf7c86" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b5f7b821-0a83-4884-a0ce-8e426d8d044d" + }, + "attachedElementGuid" : { + "value" : "7d233f71-c304-49a8-8149-92f96fdf7c86" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b5f7b821-0a83-4884-a0ce-8e426d8d044d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b5f7b821-0a83-4884-a0ce-8e426d8d044d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b5f7b821-0a83-4884-a0ce-8e426d8d044d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "b5f7b821-0a83-4884-a0ce-8e426d8d044d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 135.960144, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8f28300e-71ce-4057-9aa9-dabf2d856eda" + }, + "attachedElementGuid" : { + "value" : "4a547cb1-cddc-4efa-a6f2-09849e18a4bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8f28300e-71ce-4057-9aa9-dabf2d856eda" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "8f28300e-71ce-4057-9aa9-dabf2d856eda" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "8f28300e-71ce-4057-9aa9-dabf2d856eda" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a6223791-4b11-47a7-9d4f-b7d994257974" + }, + "attachedElementGuid" : { + "value" : "8f28300e-71ce-4057-9aa9-dabf2d856eda" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a6223791-4b11-47a7-9d4f-b7d994257974" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a6223791-4b11-47a7-9d4f-b7d994257974" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a6223791-4b11-47a7-9d4f-b7d994257974" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "a6223791-4b11-47a7-9d4f-b7d994257974" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 136.950134, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5e7fcf43-d61f-49c1-9e7c-47f9bbd39e43" + }, + "attachedElementGuid" : { + "value" : "4a547cb1-cddc-4efa-a6f2-09849e18a4bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5e7fcf43-d61f-49c1-9e7c-47f9bbd39e43" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "5e7fcf43-d61f-49c1-9e7c-47f9bbd39e43" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "5e7fcf43-d61f-49c1-9e7c-47f9bbd39e43" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d79d0b92-1aac-4128-8f18-363ac7971ebf" + }, + "attachedElementGuid" : { + "value" : "5e7fcf43-d61f-49c1-9e7c-47f9bbd39e43" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d79d0b92-1aac-4128-8f18-363ac7971ebf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d79d0b92-1aac-4128-8f18-363ac7971ebf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d79d0b92-1aac-4128-8f18-363ac7971ebf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d79d0b92-1aac-4128-8f18-363ac7971ebf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 137.94014, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "41989d57-529a-4b3c-bc76-a02befb361a8" + }, + "attachedElementGuid" : { + "value" : "4a547cb1-cddc-4efa-a6f2-09849e18a4bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "41989d57-529a-4b3c-bc76-a02befb361a8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "41989d57-529a-4b3c-bc76-a02befb361a8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "41989d57-529a-4b3c-bc76-a02befb361a8" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "36cde066-0d14-439f-b65e-c331eba4318d" + }, + "attachedElementGuid" : { + "value" : "41989d57-529a-4b3c-bc76-a02befb361a8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "36cde066-0d14-439f-b65e-c331eba4318d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "36cde066-0d14-439f-b65e-c331eba4318d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "36cde066-0d14-439f-b65e-c331eba4318d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "36cde066-0d14-439f-b65e-c331eba4318d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 138.59787, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d66abc13-cf03-46ac-a861-db2aab2e36fd" + }, + "attachedElementGuid" : { + "value" : "a6c1ff15-86cb-40db-b3ba-27cc4ea9ba36" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d66abc13-cf03-46ac-a861-db2aab2e36fd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "d66abc13-cf03-46ac-a861-db2aab2e36fd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "d66abc13-cf03-46ac-a861-db2aab2e36fd" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "46dbbf8c-1c5b-430f-8f37-4c6e63b2b4ce" + }, + "attachedElementGuid" : { + "value" : "d66abc13-cf03-46ac-a861-db2aab2e36fd" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "46dbbf8c-1c5b-430f-8f37-4c6e63b2b4ce" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "46dbbf8c-1c5b-430f-8f37-4c6e63b2b4ce" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "46dbbf8c-1c5b-430f-8f37-4c6e63b2b4ce" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "46dbbf8c-1c5b-430f-8f37-4c6e63b2b4ce" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 138.652863, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4da028c1-7c88-4dae-b05e-9ba61a85e60b" + }, + "attachedElementGuid" : { + "value" : "a6c1ff15-86cb-40db-b3ba-27cc4ea9ba36" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4da028c1-7c88-4dae-b05e-9ba61a85e60b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "4da028c1-7c88-4dae-b05e-9ba61a85e60b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "4da028c1-7c88-4dae-b05e-9ba61a85e60b" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "912a5a1e-248b-481a-80ee-e022afdf933a" + }, + "attachedElementGuid" : { + "value" : "4da028c1-7c88-4dae-b05e-9ba61a85e60b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "912a5a1e-248b-481a-80ee-e022afdf933a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "912a5a1e-248b-481a-80ee-e022afdf933a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "912a5a1e-248b-481a-80ee-e022afdf933a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "912a5a1e-248b-481a-80ee-e022afdf933a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 138.707855, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "837d1dd3-0066-497f-a2f8-68887ae669be" + }, + "attachedElementGuid" : { + "value" : "a6c1ff15-86cb-40db-b3ba-27cc4ea9ba36" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "837d1dd3-0066-497f-a2f8-68887ae669be" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "837d1dd3-0066-497f-a2f8-68887ae669be" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "837d1dd3-0066-497f-a2f8-68887ae669be" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a78d0956-ca45-4e50-81b3-4f19c2d28fa9" + }, + "attachedElementGuid" : { + "value" : "837d1dd3-0066-497f-a2f8-68887ae669be" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a78d0956-ca45-4e50-81b3-4f19c2d28fa9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a78d0956-ca45-4e50-81b3-4f19c2d28fa9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a78d0956-ca45-4e50-81b3-4f19c2d28fa9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "a78d0956-ca45-4e50-81b3-4f19c2d28fa9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 138.762863, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5ed6924b-1bb3-440e-b113-bb762eae077a" + }, + "attachedElementGuid" : { + "value" : "a6c1ff15-86cb-40db-b3ba-27cc4ea9ba36" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5ed6924b-1bb3-440e-b113-bb762eae077a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "5ed6924b-1bb3-440e-b113-bb762eae077a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "5ed6924b-1bb3-440e-b113-bb762eae077a" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a4e24ecc-518d-4704-b59e-4badc2403cdb" + }, + "attachedElementGuid" : { + "value" : "5ed6924b-1bb3-440e-b113-bb762eae077a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a4e24ecc-518d-4704-b59e-4badc2403cdb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a4e24ecc-518d-4704-b59e-4badc2403cdb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "a4e24ecc-518d-4704-b59e-4badc2403cdb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "a4e24ecc-518d-4704-b59e-4badc2403cdb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 138.59787, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "dd70b78b-a129-4d2b-9a99-77b35e3fd28a" + }, + "attachedElementGuid" : { + "value" : "bd48f141-5d42-4bf6-9edd-54ee34f84eee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "dd70b78b-a129-4d2b-9a99-77b35e3fd28a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "dd70b78b-a129-4d2b-9a99-77b35e3fd28a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "dd70b78b-a129-4d2b-9a99-77b35e3fd28a" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c2c1e3d7-75f9-4fdf-984f-b8cd9db99395" + }, + "attachedElementGuid" : { + "value" : "dd70b78b-a129-4d2b-9a99-77b35e3fd28a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c2c1e3d7-75f9-4fdf-984f-b8cd9db99395" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c2c1e3d7-75f9-4fdf-984f-b8cd9db99395" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c2c1e3d7-75f9-4fdf-984f-b8cd9db99395" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "c2c1e3d7-75f9-4fdf-984f-b8cd9db99395" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 138.652863, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "14078e52-2b86-4a8e-a99a-c44c46c380f3" + }, + "attachedElementGuid" : { + "value" : "bd48f141-5d42-4bf6-9edd-54ee34f84eee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "14078e52-2b86-4a8e-a99a-c44c46c380f3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "14078e52-2b86-4a8e-a99a-c44c46c380f3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "14078e52-2b86-4a8e-a99a-c44c46c380f3" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "84f07d3b-fca3-4f21-8ec8-96d26a7d6caa" + }, + "attachedElementGuid" : { + "value" : "14078e52-2b86-4a8e-a99a-c44c46c380f3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "84f07d3b-fca3-4f21-8ec8-96d26a7d6caa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "84f07d3b-fca3-4f21-8ec8-96d26a7d6caa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "84f07d3b-fca3-4f21-8ec8-96d26a7d6caa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "84f07d3b-fca3-4f21-8ec8-96d26a7d6caa" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 138.707855, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "70d0bd0b-e964-4197-a8fa-52b5b59103d9" + }, + "attachedElementGuid" : { + "value" : "bd48f141-5d42-4bf6-9edd-54ee34f84eee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "70d0bd0b-e964-4197-a8fa-52b5b59103d9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "70d0bd0b-e964-4197-a8fa-52b5b59103d9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "70d0bd0b-e964-4197-a8fa-52b5b59103d9" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d08aaeb1-f127-4bd4-a261-76511877a1bf" + }, + "attachedElementGuid" : { + "value" : "70d0bd0b-e964-4197-a8fa-52b5b59103d9" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d08aaeb1-f127-4bd4-a261-76511877a1bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d08aaeb1-f127-4bd4-a261-76511877a1bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d08aaeb1-f127-4bd4-a261-76511877a1bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d08aaeb1-f127-4bd4-a261-76511877a1bf" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 138.762863, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fe775ab1-b05d-4f1e-9a9d-7f8a379b7518" + }, + "attachedElementGuid" : { + "value" : "bd48f141-5d42-4bf6-9edd-54ee34f84eee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fe775ab1-b05d-4f1e-9a9d-7f8a379b7518" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "fe775ab1-b05d-4f1e-9a9d-7f8a379b7518" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "fe775ab1-b05d-4f1e-9a9d-7f8a379b7518" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6813b577-cafc-4c94-8e1a-ff5f840673e5" + }, + "attachedElementGuid" : { + "value" : "fe775ab1-b05d-4f1e-9a9d-7f8a379b7518" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6813b577-cafc-4c94-8e1a-ff5f840673e5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6813b577-cafc-4c94-8e1a-ff5f840673e5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6813b577-cafc-4c94-8e1a-ff5f840673e5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "6813b577-cafc-4c94-8e1a-ff5f840673e5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 138.93, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "28317a70-2321-4df4-8294-8763e569951c" + }, + "attachedElementGuid" : { + "value" : "a6c1ff15-86cb-40db-b3ba-27cc4ea9ba36" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "28317a70-2321-4df4-8294-8763e569951c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "28317a70-2321-4df4-8294-8763e569951c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "28317a70-2321-4df4-8294-8763e569951c" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4c787cd0-2746-41c3-b65c-7d6c6f1761c8" + }, + "attachedElementGuid" : { + "value" : "28317a70-2321-4df4-8294-8763e569951c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4c787cd0-2746-41c3-b65c-7d6c6f1761c8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4c787cd0-2746-41c3-b65c-7d6c6f1761c8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4c787cd0-2746-41c3-b65c-7d6c6f1761c8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "4c787cd0-2746-41c3-b65c-7d6c6f1761c8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 138.93, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "39f40d8b-26fc-4247-9be3-0e06333089f2" + }, + "attachedElementGuid" : { + "value" : "bd48f141-5d42-4bf6-9edd-54ee34f84eee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "39f40d8b-26fc-4247-9be3-0e06333089f2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "39f40d8b-26fc-4247-9be3-0e06333089f2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "39f40d8b-26fc-4247-9be3-0e06333089f2" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "f23f5289-373c-4027-be63-e0bdbaea6ca0" + }, + "attachedElementGuid" : { + "value" : "39f40d8b-26fc-4247-9be3-0e06333089f2" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "f23f5289-373c-4027-be63-e0bdbaea6ca0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "f23f5289-373c-4027-be63-e0bdbaea6ca0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "f23f5289-373c-4027-be63-e0bdbaea6ca0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "f23f5289-373c-4027-be63-e0bdbaea6ca0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 139.260147, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5be9cd0a-d383-4bbc-b350-92be0c8bbb17" + }, + "attachedElementGuid" : { + "value" : "a6c1ff15-86cb-40db-b3ba-27cc4ea9ba36" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5be9cd0a-d383-4bbc-b350-92be0c8bbb17" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "5be9cd0a-d383-4bbc-b350-92be0c8bbb17" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "5be9cd0a-d383-4bbc-b350-92be0c8bbb17" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "58ed48b2-e12c-4433-8db9-a8fbd547ba06" + }, + "attachedElementGuid" : { + "value" : "5be9cd0a-d383-4bbc-b350-92be0c8bbb17" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "58ed48b2-e12c-4433-8db9-a8fbd547ba06" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "58ed48b2-e12c-4433-8db9-a8fbd547ba06" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "58ed48b2-e12c-4433-8db9-a8fbd547ba06" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "58ed48b2-e12c-4433-8db9-a8fbd547ba06" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 139.590149, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2b21b0ee-9e85-44c6-807d-3472a1f210ac" + }, + "attachedElementGuid" : { + "value" : "bd48f141-5d42-4bf6-9edd-54ee34f84eee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2b21b0ee-9e85-44c6-807d-3472a1f210ac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "2b21b0ee-9e85-44c6-807d-3472a1f210ac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "2b21b0ee-9e85-44c6-807d-3472a1f210ac" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3cdaeeda-b6d4-4ff5-9506-42a9da83a432" + }, + "attachedElementGuid" : { + "value" : "2b21b0ee-9e85-44c6-807d-3472a1f210ac" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "3cdaeeda-b6d4-4ff5-9506-42a9da83a432" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3cdaeeda-b6d4-4ff5-9506-42a9da83a432" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "3cdaeeda-b6d4-4ff5-9506-42a9da83a432" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "3cdaeeda-b6d4-4ff5-9506-42a9da83a432" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 139.920151, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1ec6319d-b45c-47e7-b6b0-9749077b7199" + }, + "attachedElementGuid" : { + "value" : "bd48f141-5d42-4bf6-9edd-54ee34f84eee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1ec6319d-b45c-47e7-b6b0-9749077b7199" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "1ec6319d-b45c-47e7-b6b0-9749077b7199" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "1ec6319d-b45c-47e7-b6b0-9749077b7199" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "8c58e8e5-074a-4d0e-a274-798df4fe13bb" + }, + "attachedElementGuid" : { + "value" : "1ec6319d-b45c-47e7-b6b0-9749077b7199" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "8c58e8e5-074a-4d0e-a274-798df4fe13bb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "8c58e8e5-074a-4d0e-a274-798df4fe13bb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "8c58e8e5-074a-4d0e-a274-798df4fe13bb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "8c58e8e5-074a-4d0e-a274-798df4fe13bb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 139.920151, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "36abb280-1631-49b8-979d-1718532ec312" + }, + "attachedElementGuid" : { + "value" : "a6c1ff15-86cb-40db-b3ba-27cc4ea9ba36" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "36abb280-1631-49b8-979d-1718532ec312" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "36abb280-1631-49b8-979d-1718532ec312" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "36abb280-1631-49b8-979d-1718532ec312" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "51852219-4db9-4b6e-b704-70f8952c3a0c" + }, + "attachedElementGuid" : { + "value" : "36abb280-1631-49b8-979d-1718532ec312" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "51852219-4db9-4b6e-b704-70f8952c3a0c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "51852219-4db9-4b6e-b704-70f8952c3a0c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "51852219-4db9-4b6e-b704-70f8952c3a0c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "51852219-4db9-4b6e-b704-70f8952c3a0c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 140.580139, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c71469d4-18b9-441d-b2dd-b1baf542dac3" + }, + "attachedElementGuid" : { + "value" : "bd48f141-5d42-4bf6-9edd-54ee34f84eee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c71469d4-18b9-441d-b2dd-b1baf542dac3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "c71469d4-18b9-441d-b2dd-b1baf542dac3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "c71469d4-18b9-441d-b2dd-b1baf542dac3" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6736baa5-3071-4a0a-a477-64ce143c8611" + }, + "attachedElementGuid" : { + "value" : "c71469d4-18b9-441d-b2dd-b1baf542dac3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "6736baa5-3071-4a0a-a477-64ce143c8611" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6736baa5-3071-4a0a-a477-64ce143c8611" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "6736baa5-3071-4a0a-a477-64ce143c8611" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "6736baa5-3071-4a0a-a477-64ce143c8611" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 140.250137, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3efdd377-1bdf-4b0f-a7ba-60ae105a35af" + }, + "attachedElementGuid" : { + "value" : "a6c1ff15-86cb-40db-b3ba-27cc4ea9ba36" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3efdd377-1bdf-4b0f-a7ba-60ae105a35af" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "3efdd377-1bdf-4b0f-a7ba-60ae105a35af" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "3efdd377-1bdf-4b0f-a7ba-60ae105a35af" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "90e52a0c-500f-4c9e-ac8f-a6bda93a0c8c" + }, + "attachedElementGuid" : { + "value" : "3efdd377-1bdf-4b0f-a7ba-60ae105a35af" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "90e52a0c-500f-4c9e-ac8f-a6bda93a0c8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "90e52a0c-500f-4c9e-ac8f-a6bda93a0c8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "90e52a0c-500f-4c9e-ac8f-a6bda93a0c8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "90e52a0c-500f-4c9e-ac8f-a6bda93a0c8c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 140.910141, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c03483bd-35b8-4eed-b698-7c911941d1d7" + }, + "attachedElementGuid" : { + "value" : "a6c1ff15-86cb-40db-b3ba-27cc4ea9ba36" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c03483bd-35b8-4eed-b698-7c911941d1d7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "c03483bd-35b8-4eed-b698-7c911941d1d7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "c03483bd-35b8-4eed-b698-7c911941d1d7" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c64f051e-4163-46c0-a5fd-67edc5974b80" + }, + "attachedElementGuid" : { + "value" : "c03483bd-35b8-4eed-b698-7c911941d1d7" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "c64f051e-4163-46c0-a5fd-67edc5974b80" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c64f051e-4163-46c0-a5fd-67edc5974b80" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "c64f051e-4163-46c0-a5fd-67edc5974b80" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "c64f051e-4163-46c0-a5fd-67edc5974b80" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 140.910141, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "aa9d3eaf-6c60-4bb7-8ed4-ce7a44419dbc" + }, + "attachedElementGuid" : { + "value" : "bd48f141-5d42-4bf6-9edd-54ee34f84eee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "aa9d3eaf-6c60-4bb7-8ed4-ce7a44419dbc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "aa9d3eaf-6c60-4bb7-8ed4-ce7a44419dbc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "aa9d3eaf-6c60-4bb7-8ed4-ce7a44419dbc" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "73fde7b7-0369-4c43-b8bf-0ea38dad70c3" + }, + "attachedElementGuid" : { + "value" : "aa9d3eaf-6c60-4bb7-8ed4-ce7a44419dbc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "73fde7b7-0369-4c43-b8bf-0ea38dad70c3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "73fde7b7-0369-4c43-b8bf-0ea38dad70c3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "73fde7b7-0369-4c43-b8bf-0ea38dad70c3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "73fde7b7-0369-4c43-b8bf-0ea38dad70c3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 141.240143, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "18c2c24f-f4a5-4347-ba86-ae96f34653e6" + }, + "attachedElementGuid" : { + "value" : "a6c1ff15-86cb-40db-b3ba-27cc4ea9ba36" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "18c2c24f-f4a5-4347-ba86-ae96f34653e6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "18c2c24f-f4a5-4347-ba86-ae96f34653e6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "18c2c24f-f4a5-4347-ba86-ae96f34653e6" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "425219c3-71ad-4e6b-a7d3-5743c938f7b8" + }, + "attachedElementGuid" : { + "value" : "18c2c24f-f4a5-4347-ba86-ae96f34653e6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "425219c3-71ad-4e6b-a7d3-5743c938f7b8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "425219c3-71ad-4e6b-a7d3-5743c938f7b8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "425219c3-71ad-4e6b-a7d3-5743c938f7b8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "425219c3-71ad-4e6b-a7d3-5743c938f7b8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 141.570145, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "86457a73-d9c7-4c0a-9b26-a77d3edec835" + }, + "attachedElementGuid" : { + "value" : "bd48f141-5d42-4bf6-9edd-54ee34f84eee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "86457a73-d9c7-4c0a-9b26-a77d3edec835" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "86457a73-d9c7-4c0a-9b26-a77d3edec835" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "86457a73-d9c7-4c0a-9b26-a77d3edec835" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "64c9548e-14d7-4cb1-b567-8e3402f5ab86" + }, + "attachedElementGuid" : { + "value" : "86457a73-d9c7-4c0a-9b26-a77d3edec835" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "64c9548e-14d7-4cb1-b567-8e3402f5ab86" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "64c9548e-14d7-4cb1-b567-8e3402f5ab86" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "64c9548e-14d7-4cb1-b567-8e3402f5ab86" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "64c9548e-14d7-4cb1-b567-8e3402f5ab86" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 141.900146, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9b0a7a9e-43c9-47b1-bab2-2cd84f4ddf23" + }, + "attachedElementGuid" : { + "value" : "bd48f141-5d42-4bf6-9edd-54ee34f84eee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9b0a7a9e-43c9-47b1-bab2-2cd84f4ddf23" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "9b0a7a9e-43c9-47b1-bab2-2cd84f4ddf23" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "9b0a7a9e-43c9-47b1-bab2-2cd84f4ddf23" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "38a86ca1-0faa-4ced-ad17-89ea6541e0e1" + }, + "attachedElementGuid" : { + "value" : "9b0a7a9e-43c9-47b1-bab2-2cd84f4ddf23" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "38a86ca1-0faa-4ced-ad17-89ea6541e0e1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "38a86ca1-0faa-4ced-ad17-89ea6541e0e1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "38a86ca1-0faa-4ced-ad17-89ea6541e0e1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "38a86ca1-0faa-4ced-ad17-89ea6541e0e1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 141.900146, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1c437c7a-c802-4a6d-ab3f-1dcf45a34135" + }, + "attachedElementGuid" : { + "value" : "a6c1ff15-86cb-40db-b3ba-27cc4ea9ba36" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1c437c7a-c802-4a6d-ab3f-1dcf45a34135" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "1c437c7a-c802-4a6d-ab3f-1dcf45a34135" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "1c437c7a-c802-4a6d-ab3f-1dcf45a34135" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "290e5321-7bc7-4c0e-89ac-d60bbb74aac1" + }, + "attachedElementGuid" : { + "value" : "1c437c7a-c802-4a6d-ab3f-1dcf45a34135" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "290e5321-7bc7-4c0e-89ac-d60bbb74aac1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "290e5321-7bc7-4c0e-89ac-d60bbb74aac1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "290e5321-7bc7-4c0e-89ac-d60bbb74aac1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "290e5321-7bc7-4c0e-89ac-d60bbb74aac1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 142.230148, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3299cc90-f767-4d7f-b985-a4ce8033137d" + }, + "attachedElementGuid" : { + "value" : "a6c1ff15-86cb-40db-b3ba-27cc4ea9ba36" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3299cc90-f767-4d7f-b985-a4ce8033137d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "3299cc90-f767-4d7f-b985-a4ce8033137d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "3299cc90-f767-4d7f-b985-a4ce8033137d" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fb8ee6df-ff92-432a-affd-f25077b9e12e" + }, + "attachedElementGuid" : { + "value" : "3299cc90-f767-4d7f-b985-a4ce8033137d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "fb8ee6df-ff92-432a-affd-f25077b9e12e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fb8ee6df-ff92-432a-affd-f25077b9e12e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "fb8ee6df-ff92-432a-affd-f25077b9e12e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "fb8ee6df-ff92-432a-affd-f25077b9e12e" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 142.56015, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "de91a840-ab4b-464e-8c8c-2e55835d503c" + }, + "attachedElementGuid" : { + "value" : "bd48f141-5d42-4bf6-9edd-54ee34f84eee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "de91a840-ab4b-464e-8c8c-2e55835d503c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "de91a840-ab4b-464e-8c8c-2e55835d503c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "de91a840-ab4b-464e-8c8c-2e55835d503c" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d8d8d001-5823-4967-8470-691d10fe18fe" + }, + "attachedElementGuid" : { + "value" : "de91a840-ab4b-464e-8c8c-2e55835d503c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d8d8d001-5823-4967-8470-691d10fe18fe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d8d8d001-5823-4967-8470-691d10fe18fe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d8d8d001-5823-4967-8470-691d10fe18fe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d8d8d001-5823-4967-8470-691d10fe18fe" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 142.890152, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6d8be7b9-9e30-41ba-a8b7-cd1812771cf3" + }, + "attachedElementGuid" : { + "value" : "a6c1ff15-86cb-40db-b3ba-27cc4ea9ba36" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6d8be7b9-9e30-41ba-a8b7-cd1812771cf3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "6d8be7b9-9e30-41ba-a8b7-cd1812771cf3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "6d8be7b9-9e30-41ba-a8b7-cd1812771cf3" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4a89cd1d-d4be-4bf2-a34f-9e63538e4a7d" + }, + "attachedElementGuid" : { + "value" : "6d8be7b9-9e30-41ba-a8b7-cd1812771cf3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4a89cd1d-d4be-4bf2-a34f-9e63538e4a7d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4a89cd1d-d4be-4bf2-a34f-9e63538e4a7d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4a89cd1d-d4be-4bf2-a34f-9e63538e4a7d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "4a89cd1d-d4be-4bf2-a34f-9e63538e4a7d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 142.890152, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "6fa97cfc-af52-4846-a9cf-d42a2ce7be59" + }, + "attachedElementGuid" : { + "value" : "bd48f141-5d42-4bf6-9edd-54ee34f84eee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "6fa97cfc-af52-4846-a9cf-d42a2ce7be59" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "6fa97cfc-af52-4846-a9cf-d42a2ce7be59" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "6fa97cfc-af52-4846-a9cf-d42a2ce7be59" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d1795b4b-8243-45e7-be92-36470f7c1881" + }, + "attachedElementGuid" : { + "value" : "6fa97cfc-af52-4846-a9cf-d42a2ce7be59" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d1795b4b-8243-45e7-be92-36470f7c1881" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d1795b4b-8243-45e7-be92-36470f7c1881" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d1795b4b-8243-45e7-be92-36470f7c1881" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d1795b4b-8243-45e7-be92-36470f7c1881" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 143.220154, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9a90ba5b-b755-407a-b9f5-883c68727b55" + }, + "attachedElementGuid" : { + "value" : "bd48f141-5d42-4bf6-9edd-54ee34f84eee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9a90ba5b-b755-407a-b9f5-883c68727b55" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "9a90ba5b-b755-407a-b9f5-883c68727b55" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "9a90ba5b-b755-407a-b9f5-883c68727b55" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "33143a0a-ba59-48e9-919d-d40c09ebf536" + }, + "attachedElementGuid" : { + "value" : "9a90ba5b-b755-407a-b9f5-883c68727b55" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "33143a0a-ba59-48e9-919d-d40c09ebf536" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "33143a0a-ba59-48e9-919d-d40c09ebf536" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "33143a0a-ba59-48e9-919d-d40c09ebf536" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "33143a0a-ba59-48e9-919d-d40c09ebf536" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 143.880142, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7f4799c7-0627-48ee-8fb1-231dc1ae4a1a" + }, + "attachedElementGuid" : { + "value" : "a6c1ff15-86cb-40db-b3ba-27cc4ea9ba36" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7f4799c7-0627-48ee-8fb1-231dc1ae4a1a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "7f4799c7-0627-48ee-8fb1-231dc1ae4a1a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "7f4799c7-0627-48ee-8fb1-231dc1ae4a1a" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "151a8b90-8663-4938-856a-dd6fae05d617" + }, + "attachedElementGuid" : { + "value" : "7f4799c7-0627-48ee-8fb1-231dc1ae4a1a" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "151a8b90-8663-4938-856a-dd6fae05d617" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "151a8b90-8663-4938-856a-dd6fae05d617" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "151a8b90-8663-4938-856a-dd6fae05d617" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "151a8b90-8663-4938-856a-dd6fae05d617" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 143.880142, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "59ed3109-4249-45ab-a36e-d327a5e7f8af" + }, + "attachedElementGuid" : { + "value" : "bd48f141-5d42-4bf6-9edd-54ee34f84eee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "59ed3109-4249-45ab-a36e-d327a5e7f8af" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "59ed3109-4249-45ab-a36e-d327a5e7f8af" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "59ed3109-4249-45ab-a36e-d327a5e7f8af" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : true, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0fdba5e0-b6d7-493b-87ed-da321404dc24" + }, + "attachedElementGuid" : { + "value" : "59ed3109-4249-45ab-a36e-d327a5e7f8af" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0fdba5e0-b6d7-493b-87ed-da321404dc24" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0fdba5e0-b6d7-493b-87ed-da321404dc24" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0fdba5e0-b6d7-493b-87ed-da321404dc24" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "0fdba5e0-b6d7-493b-87ed-da321404dc24" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 144.210144, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3fe7a49f-ea06-47ca-96dd-ebb158d17de0" + }, + "attachedElementGuid" : { + "value" : "a6c1ff15-86cb-40db-b3ba-27cc4ea9ba36" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3fe7a49f-ea06-47ca-96dd-ebb158d17de0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "3fe7a49f-ea06-47ca-96dd-ebb158d17de0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "3fe7a49f-ea06-47ca-96dd-ebb158d17de0" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9fd674e9-3210-4312-90f3-55177b58b920" + }, + "attachedElementGuid" : { + "value" : "3fe7a49f-ea06-47ca-96dd-ebb158d17de0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9fd674e9-3210-4312-90f3-55177b58b920" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9fd674e9-3210-4312-90f3-55177b58b920" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "9fd674e9-3210-4312-90f3-55177b58b920" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "9fd674e9-3210-4312-90f3-55177b58b920" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 144.540146, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "e83fbb33-f70b-49b9-9d60-183ebab8dacc" + }, + "attachedElementGuid" : { + "value" : "a6c1ff15-86cb-40db-b3ba-27cc4ea9ba36" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "e83fbb33-f70b-49b9-9d60-183ebab8dacc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "e83fbb33-f70b-49b9-9d60-183ebab8dacc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "e83fbb33-f70b-49b9-9d60-183ebab8dacc" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bc7598be-f532-458e-8f14-5c7f7e504fc3" + }, + "attachedElementGuid" : { + "value" : "e83fbb33-f70b-49b9-9d60-183ebab8dacc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "bc7598be-f532-458e-8f14-5c7f7e504fc3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bc7598be-f532-458e-8f14-5c7f7e504fc3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "bc7598be-f532-458e-8f14-5c7f7e504fc3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "bc7598be-f532-458e-8f14-5c7f7e504fc3" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 145.860153, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1825cb25-5463-498d-bb7e-add011b2c539" + }, + "attachedElementGuid" : { + "value" : "a6c1ff15-86cb-40db-b3ba-27cc4ea9ba36" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1825cb25-5463-498d-bb7e-add011b2c539" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "1825cb25-5463-498d-bb7e-add011b2c539" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "1825cb25-5463-498d-bb7e-add011b2c539" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "acdc490c-039d-4e7a-95cd-3755269cfea0" + }, + "attachedElementGuid" : { + "value" : "1825cb25-5463-498d-bb7e-add011b2c539" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "acdc490c-039d-4e7a-95cd-3755269cfea0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "acdc490c-039d-4e7a-95cd-3755269cfea0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "acdc490c-039d-4e7a-95cd-3755269cfea0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "acdc490c-039d-4e7a-95cd-3755269cfea0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 146.025146, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "c2334747-aee8-4226-abb0-a96b129ea9f6" + }, + "attachedElementGuid" : { + "value" : "a6c1ff15-86cb-40db-b3ba-27cc4ea9ba36" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "c2334747-aee8-4226-abb0-a96b129ea9f6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "c2334747-aee8-4226-abb0-a96b129ea9f6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "c2334747-aee8-4226-abb0-a96b129ea9f6" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d1b61569-eca4-4d6f-ba6f-b647c493404c" + }, + "attachedElementGuid" : { + "value" : "c2334747-aee8-4226-abb0-a96b129ea9f6" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "d1b61569-eca4-4d6f-ba6f-b647c493404c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d1b61569-eca4-4d6f-ba6f-b647c493404c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "d1b61569-eca4-4d6f-ba6f-b647c493404c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "d1b61569-eca4-4d6f-ba6f-b647c493404c" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 146.190155, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "301a3b73-d510-4c9c-863f-1d1bf8f34ece" + }, + "attachedElementGuid" : { + "value" : "bd48f141-5d42-4bf6-9edd-54ee34f84eee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "301a3b73-d510-4c9c-863f-1d1bf8f34ece" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "301a3b73-d510-4c9c-863f-1d1bf8f34ece" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "301a3b73-d510-4c9c-863f-1d1bf8f34ece" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b73302cb-9925-420b-ba01-731a49ce2622" + }, + "attachedElementGuid" : { + "value" : "301a3b73-d510-4c9c-863f-1d1bf8f34ece" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b73302cb-9925-420b-ba01-731a49ce2622" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b73302cb-9925-420b-ba01-731a49ce2622" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b73302cb-9925-420b-ba01-731a49ce2622" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "b73302cb-9925-420b-ba01-731a49ce2622" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp", + "exactJudgeTime" : 146.355148, + "elementName" : "New Stay", + "tags" : [ + + ], + "elementGuid" : { + "value" : "3870cc80-8a3c-4072-81fc-d3a8959aca95" + }, + "attachedElementGuid" : { + "value" : "bd48f141-5d42-4bf6-9edd-54ee34f84eee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "3870cc80-8a3c-4072-81fc-d3a8959aca95" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 10000 + } + ], + "attachedElementGuid" : { + "value" : "3870cc80-8a3c-4072-81fc-d3a8959aca95" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultStay" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "3870cc80-8a3c-4072-81fc-d3a8959aca95" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualStay", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "0c105585-d317-41db-b47f-fae78e001828" + }, + "attachedElementGuid" : { + "value" : "3870cc80-8a3c-4072-81fc-d3a8959aca95" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "0c105585-d317-41db-b47f-fae78e001828" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "0c105585-d317-41db-b47f-fae78e001828" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "0c105585-d317-41db-b47f-fae78e001828" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + + ],"Bad":[ + + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "0c105585-d317-41db-b47f-fae78e001828" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp", + "elementName" : "Rain(0,-15,60)", + "tags" : [ + + ], + "elementGuid" : { + "value" : "977d3df8-05b6-4260-a317-7fc33970e8e1" + }, + "attachedElementGuid" : { + "value" : "b4cd674c-0e46-4575-ba89-347312bfd976" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : -15, + "z" : 60 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "977d3df8-05b6-4260-a317-7fc33970e8e1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "977d3df8-05b6-4260-a317-7fc33970e8e1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "r1", + "tags" : [ + + ], + "elementGuid" : { + "value" : "a32bb3f4-99de-4ad1-86b6-cfa0f17aae26" + }, + "attachedElementGuid" : { + "value" : "977d3df8-05b6-4260-a317-7fc33970e8e1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 180 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "a32bb3f4-99de-4ad1-86b6-cfa0f17aae26" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "a32bb3f4-99de-4ad1-86b6-cfa0f17aae26" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 0, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "a32bb3f4-99de-4ad1-86b6-cfa0f17aae26" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 0, + "trackEndTime" : 3, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "a32bb3f4-99de-4ad1-86b6-cfa0f17aae26" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "bf6e6118-3697-4850-b54d-11c0e06730bb" + }, + "attachedElementGuid" : { + "value" : "a32bb3f4-99de-4ad1-86b6-cfa0f17aae26" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -3, + "y" : 30, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "bf6e6118-3697-4850-b54d-11c0e06730bb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "bf6e6118-3697-4850-b54d-11c0e06730bb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "bf6e6118-3697-4850-b54d-11c0e06730bb" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1dcdc799-7968-40c1-867d-76364c3e2cd8" + }, + "attachedElementGuid" : { + "value" : "a32bb3f4-99de-4ad1-86b6-cfa0f17aae26" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "1dcdc799-7968-40c1-867d-76364c3e2cd8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1dcdc799-7968-40c1-867d-76364c3e2cd8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "1dcdc799-7968-40c1-867d-76364c3e2cd8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ParticleTracker_BM,Assembly-CSharp", + "prewarm" : false, + "playTime" : 129, + "stopTime" : 141, + "is3D" : true, + "width" : 40, + "extendDirection" : { + "x" : 2, + "y" : 0, + "z" : 8 + }, + "density" : 80, + "lifeTime" : 3, + "isAutoOrient" : false, + "particleRotation" : { + "x" : 0, + "y" : 0, + "z" : -10 + }, + "materialThemeBundleName" : "basic", + "materialName" : "Basic_Track_Segments", + "elementName" : "New Particle Tracker", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9e2fff82-ee5f-469d-ab8b-8d3ac1964ac1" + }, + "attachedElementGuid" : { + "value" : "a32bb3f4-99de-4ad1-86b6-cfa0f17aae26" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0.3858937, + "g" : 0.4940961, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "9e2fff82-ee5f-469d-ab8b-8d3ac1964ac1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "r2", + "tags" : [ + + ], + "elementGuid" : { + "value" : "2c6d1bcf-d2c2-46c5-a027-825ba55eeba0" + }, + "attachedElementGuid" : { + "value" : "977d3df8-05b6-4260-a317-7fc33970e8e1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 540 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "2c6d1bcf-d2c2-46c5-a027-825ba55eeba0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "2c6d1bcf-d2c2-46c5-a027-825ba55eeba0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 0, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "2c6d1bcf-d2c2-46c5-a027-825ba55eeba0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 0, + "trackEndTime" : 3, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "2c6d1bcf-d2c2-46c5-a027-825ba55eeba0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "03369bd6-7b27-4423-b984-0bfbcd22bfa1" + }, + "attachedElementGuid" : { + "value" : "2c6d1bcf-d2c2-46c5-a027-825ba55eeba0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : -3, + "y" : 30, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "03369bd6-7b27-4423-b984-0bfbcd22bfa1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "03369bd6-7b27-4423-b984-0bfbcd22bfa1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "03369bd6-7b27-4423-b984-0bfbcd22bfa1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : false, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "7959e64d-90ef-409e-a054-76134f43ce82" + }, + "attachedElementGuid" : { + "value" : "2c6d1bcf-d2c2-46c5-a027-825ba55eeba0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "7959e64d-90ef-409e-a054-76134f43ce82" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "7959e64d-90ef-409e-a054-76134f43ce82" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "7959e64d-90ef-409e-a054-76134f43ce82" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ParticleTracker_BM,Assembly-CSharp", + "prewarm" : false, + "playTime" : 137, + "stopTime" : 152, + "is3D" : true, + "width" : 40, + "extendDirection" : { + "x" : 2, + "y" : 0, + "z" : 8 + }, + "density" : 80, + "lifeTime" : 3, + "isAutoOrient" : false, + "particleRotation" : { + "x" : 0, + "y" : 0, + "z" : -10 + }, + "materialThemeBundleName" : "basic", + "materialName" : "Basic_Track_Segments", + "elementName" : "New Particle Tracker", + "tags" : [ + + ], + "elementGuid" : { + "value" : "37bb0bc5-15b8-423d-b375-777949c34ddc" + }, + "attachedElementGuid" : { + "value" : "2c6d1bcf-d2c2-46c5-a027-825ba55eeba0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 0.3858937, + "g" : 0.4940961, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : true, + "originalEmissionColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "originalEmissionIntensity" : 1, + "attachedElementGuid" : { + "value" : "37bb0bc5-15b8-423d-b375-777949c34ddc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 143.550156, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "fafd4d3c-59cd-40f1-94b4-ae5ec27870bc" + }, + "attachedElementGuid" : { + "value" : "bd48f141-5d42-4bf6-9edd-54ee34f84eee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "fafd4d3c-59cd-40f1-94b4-ae5ec27870bc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "fafd4d3c-59cd-40f1-94b4-ae5ec27870bc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "fafd4d3c-59cd-40f1-94b4-ae5ec27870bc" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "4e42d9e9-8722-40e2-a112-be6c4ccdb4e0" + }, + "attachedElementGuid" : { + "value" : "fafd4d3c-59cd-40f1-94b4-ae5ec27870bc" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "4e42d9e9-8722-40e2-a112-be6c4ccdb4e0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "4e42d9e9-8722-40e2-a112-be6c4ccdb4e0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "4e42d9e9-8722-40e2-a112-be6c4ccdb4e0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "4e42d9e9-8722-40e2-a112-be6c4ccdb4e0" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 144.870148, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "d9992934-6b46-4db5-8e9d-9d17f3cbb70b" + }, + "attachedElementGuid" : { + "value" : "a6c1ff15-86cb-40db-b3ba-27cc4ea9ba36" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "d9992934-6b46-4db5-8e9d-9d17f3cbb70b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "d9992934-6b46-4db5-8e9d-9d17f3cbb70b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "d9992934-6b46-4db5-8e9d-9d17f3cbb70b" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ce7f865f-fd18-4cbc-b40c-a2852a76c62d" + }, + "attachedElementGuid" : { + "value" : "d9992934-6b46-4db5-8e9d-9d17f3cbb70b" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ce7f865f-fd18-4cbc-b40c-a2852a76c62d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ce7f865f-fd18-4cbc-b40c-a2852a76c62d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ce7f865f-fd18-4cbc-b40c-a2852a76c62d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "ce7f865f-fd18-4cbc-b40c-a2852a76c62d" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 145.20015, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "5e011578-26d4-4e37-aad3-def210e305d5" + }, + "attachedElementGuid" : { + "value" : "bd48f141-5d42-4bf6-9edd-54ee34f84eee" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "5e011578-26d4-4e37-aad3-def210e305d5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "5e011578-26d4-4e37-aad3-def210e305d5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "5e011578-26d4-4e37-aad3-def210e305d5" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "9be73770-b46b-4dec-a392-5920c9b28e46" + }, + "attachedElementGuid" : { + "value" : "5e011578-26d4-4e37-aad3-def210e305d5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "9be73770-b46b-4dec-a392-5920c9b28e46" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "9be73770-b46b-4dec-a392-5920c9b28e46" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "9be73770-b46b-4dec-a392-5920c9b28e46" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "9be73770-b46b-4dec-a392-5920c9b28e46" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp", + "exactJudgeTime" : 145.530151, + "elementName" : "New Tap", + "tags" : [ + + ], + "elementGuid" : { + "value" : "cc13b224-8cb8-40aa-8b65-1cc5ced4ffe8" + }, + "attachedElementGuid" : { + "value" : "a6c1ff15-86cb-40db-b3ba-27cc4ea9ba36" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "cc13b224-8cb8-40aa-8b65-1cc5ced4ffe8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp", + "judgeUnitList" : [ + { + "__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp", + "areaRadius" : 500 + } + ], + "attachedElementGuid" : { + "value" : "cc13b224-8cb8-40aa-8b65-1cc5ced4ffe8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp", + "generalJudgeAudioList" : [ + "DefaultTap" + ], + "perfectAudioList" : [ + + ], + "goodAudioList" : [ + + ], + "badAudioList" : [ + + ], + "missAudioList" : [ + + ], + "holdStartAudioList" : [ + + ], + "attachedElementGuid" : { + "value" : "cc13b224-8cb8-40aa-8b65-1cc5ced4ffe8" + } + },{ + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp", + "isHighlighted" : false, + "themeBundleName" : "departure_to_multiverse", + "objectName" : "DTM_NoteVisualTap", + "elementName" : "New Note Visual", + "tags" : [ + + ], + "elementGuid" : { + "value" : "ffcc7954-1362-4dc7-8881-cfe8f882abe5" + }, + "attachedElementGuid" : { + "value" : "cc13b224-8cb8-40aa-8b65-1cc5ced4ffe8" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "ffcc7954-1362-4dc7-8881-cfe8f882abe5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "ffcc7954-1362-4dc7-8881-cfe8f882abe5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "ffcc7954-1362-4dc7-8881-cfe8f882abe5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Generate":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp", + "generateTime" : 1.5, + "effectTime" : 0.2 + } + ],"GeneralJudge":[ + + ],"StartHold":[ + + ],"Holding":[ + + ],"Perfect":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Good":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Bad":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp", + "effectTime" : 0 + } + ],"Miss":[ + { + "__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp", + "effectTime" : 0.2 + } + ],"AfterJudge":[ + + ] + }, + "attachedElementGuid" : { + "value" : "ffcc7954-1362-4dc7-8881-cfe8f882abe5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeEffectsCollection_BM,Assembly-CSharp", + "time" : 131.01, + "elementName" : "Black", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1083972a-af93-4a2a-a380-cb3bd2cf2262" + }, + "attachedElementGuid" : { + "value" : "b4cd674c-0e46-4575-ba89-347312bfd976" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "1083972a-af93-4a2a-a380-cb3bd2cf2262" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp", + "effectCollection" : {"Prior":[ + + ],"Default":[ + { + "__type" : "Ichni.RhythmGame.Beatmap.VignetteEffect_BM,Assembly-CSharp", + "duration" : 7.92, + "peak" : 1, + "smoothness" : 0.4, + "color" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "intensityCurve" : { + "keys" : [ + { + "time" : 0, + "value" : 0, + "inTangent" : 0, + "outTangent" : 0 + },{ + "time" : 0.1, + "value" : 1, + "inTangent" : 0, + "outTangent" : 0 + },{ + "time" : 0.9, + "value" : 1, + "inTangent" : 0, + "outTangent" : 0 + },{ + "time" : 1, + "value" : 0, + "inTangent" : 0, + "outTangent" : 0 + } + ], + "preWrapMode" : 8, + "postWrapMode" : 8 + }, + "effectTime" : 0 + } + ],"Late":[ + + ] + }, + "attachedElementGuid" : { + "value" : "1083972a-af93-4a2a-a380-cb3bd2cf2262" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp", + "elementName" : "146.85-150.81 ", + "tags" : [ + + ], + "elementGuid" : { + "value" : "1aa8afb1-3204-46c9-a00f-2bb5edec6c17" + }, + "attachedElementGuid" : { + "value" : "f090c03d-7b08-4ec2-94d5-6e4baa1c4af1" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "1aa8afb1-3204-46c9-a00f-2bb5edec6c17" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "1aa8afb1-3204-46c9-a00f-2bb5edec6c17" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp", + "trackSpaceType" : 0, + "trackSamplingType" : 0, + "isClosed" : false, + "isShowingDisplay" : false, + "attachedElementGuid" : { + "value" : "1aa8afb1-3204-46c9-a00f-2bb5edec6c17" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp", + "trackStartTime" : 146.85, + "trackEndTime" : 150.81, + "visibleTrackTimeLength" : 0, + "animationCurveType" : 0, + "attachedElementGuid" : { + "value" : "1aa8afb1-3204-46c9-a00f-2bb5edec6c17" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "b3d699dd-12af-426e-989e-f56aa6c64c10" + }, + "attachedElementGuid" : { + "value" : "1aa8afb1-3204-46c9-a00f-2bb5edec6c17" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 5947.5 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "b3d699dd-12af-426e-989e-f56aa6c64c10" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "b3d699dd-12af-426e-989e-f56aa6c64c10" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "b3d699dd-12af-426e-989e-f56aa6c64c10" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp", + "isShowingSphere" : true, + "elementName" : "New Path Node", + "tags" : [ + + ], + "elementGuid" : { + "value" : "95f91b1f-db93-4e09-8c67-b56866d0bcc5" + }, + "attachedElementGuid" : { + "value" : "1aa8afb1-3204-46c9-a00f-2bb5edec6c17" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp", + "originalPosition" : { + "x" : 0, + "y" : 0, + "z" : 6127.5 + }, + "originalEulerAngles" : { + "x" : 0, + "y" : 0, + "z" : 0 + }, + "originalScale" : { + "x" : 1, + "y" : 1, + "z" : 1 + }, + "attachedElementGuid" : { + "value" : "95f91b1f-db93-4e09-8c67-b56866d0bcc5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp", + "isOverridingDuration" : false, + "startTime" : -32767, + "endTime" : 32767, + "attachedElementGuid" : { + "value" : "95f91b1f-db93-4e09-8c67-b56866d0bcc5" + } + },{ + "__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp", + "originalBaseColor" : { + "r" : 1, + "g" : 1, + "b" : 1, + "a" : 1 + }, + "emissionEnabled" : false, + "originalEmissionColor" : { + "r" : 0, + "g" : 0, + "b" : 0, + "a" : 1 + }, + "originalEmissionIntensity" : 0, + "attachedElementGuid" : { + "value" : "95f91b1f-db93-4e09-8c67-b56866d0bcc5" + } } ], "attachedElementGuid" : { diff --git a/Assets/StreamingAssets/Export/Space Rain/Beatmap.bytes b/Assets/StreamingAssets/Export/Space Rain/Beatmap.bytes index 657f1cc9..f576112c 100644 Binary files a/Assets/StreamingAssets/Export/Space Rain/Beatmap.bytes and b/Assets/StreamingAssets/Export/Space Rain/Beatmap.bytes differ diff --git a/Assets/StreamingAssets/Export/Space Rain/CommandScripts.bytes b/Assets/StreamingAssets/Export/Space Rain/CommandScripts.bytes index d7d84066..91285989 100644 Binary files a/Assets/StreamingAssets/Export/Space Rain/CommandScripts.bytes and b/Assets/StreamingAssets/Export/Space Rain/CommandScripts.bytes differ diff --git a/Assets/StreamingAssets/Export/Space Rain/ProjectInfo.bytes b/Assets/StreamingAssets/Export/Space Rain/ProjectInfo.bytes index 06b6b0df..147ed6f2 100644 Binary files a/Assets/StreamingAssets/Export/Space Rain/ProjectInfo.bytes and b/Assets/StreamingAssets/Export/Space Rain/ProjectInfo.bytes differ diff --git a/Assets/StreamingAssets/Export/Space Rain/SongInfo.bytes b/Assets/StreamingAssets/Export/Space Rain/SongInfo.bytes index d82b552c..73be6d8d 100644 --- a/Assets/StreamingAssets/Export/Space Rain/SongInfo.bytes +++ b/Assets/StreamingAssets/Export/Space Rain/SongInfo.bytes @@ -1,2 +1,2 @@ - ?=Udː5ڡdKQP:lȖ5'yjW[- -֥xmӒm8۹j3+_r{XRlH5S~P8ʒ fXIݞ@